mirror of
git://opensimulator.org/git/opensim
synced 2026-08-15 09:32:16 +00:00
Currently the vm is at a early stage and very limited: currently only supports static methods (instance methods support is nearly finished though) currently a class can't have member variables, so currently only local variables in the methods. Also in this branch, connecting the vm to opensim is not completely finished: it is being uploaded just for viewing purposes.
27 lines
532 B
C#
27 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.RegionServer.world.scripting
|
|
{
|
|
public class Script
|
|
{
|
|
private LLUUID m_scriptId;
|
|
public virtual LLUUID ScriptId
|
|
{
|
|
get
|
|
{
|
|
return m_scriptId;
|
|
}
|
|
}
|
|
|
|
public Script( LLUUID scriptId )
|
|
{
|
|
m_scriptId = scriptId;
|
|
}
|
|
|
|
public ScriptEventHandler OnFrame;
|
|
}
|
|
}
|