mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 05:45:37 +08:00
* Script prototype
This commit is contained in:
27
OpenSim.RegionServer/world/scripting/Script.cs
Normal file
27
OpenSim.RegionServer/world/scripting/Script.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user