diff options
author | Adam Frisby | 2009-03-04 01:38:22 +0000 |
---|---|---|
committer | Adam Frisby | 2009-03-04 01:38:22 +0000 |
commit | 3538eeafa200f035b67a833c11b5050360479463 (patch) | |
tree | b69f49f93bde8a6bb0f82395ff8e7360e088f30b /OpenSim/Region/OptionalModules/Scripting/ObjectModules/IObjectModule.cs | |
parent | CONTRIBUTORS.txt cleanup (diff) | |
download | opensim-SC_OLD-3538eeafa200f035b67a833c11b5050360479463.zip opensim-SC_OLD-3538eeafa200f035b67a833c11b5050360479463.tar.gz opensim-SC_OLD-3538eeafa200f035b67a833c11b5050360479463.tar.bz2 opensim-SC_OLD-3538eeafa200f035b67a833c11b5050360479463.tar.xz |
* Implementing some interfaces for aformentioned script engine. Ignore this.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/ObjectModules/IObjectModule.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/ObjectModules/IObjectModule.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/ObjectModules/IObjectModule.cs b/OpenSim/Region/OptionalModules/Scripting/ObjectModules/IObjectModule.cs new file mode 100644 index 0000000..923b053 --- /dev/null +++ b/OpenSim/Region/OptionalModules/Scripting/ObjectModules/IObjectModule.cs | |||
@@ -0,0 +1,15 @@ | |||
1 | using OpenSim.Region.Framework.Scenes; | ||
2 | |||
3 | namespace OpenSim.Region.OptionalModules.Scripting.ObjectModules | ||
4 | { | ||
5 | interface IObjectModule | ||
6 | { | ||
7 | void Add(EntityBase entity, Scene scene); | ||
8 | void Start(); | ||
9 | void Stop(); | ||
10 | void Tick(); | ||
11 | |||
12 | string ClassName { get; } | ||
13 | bool IsShared { get; } | ||
14 | } | ||
15 | } | ||