diff options
author | Diva Canto | 2009-12-31 09:25:16 -0800 |
---|---|---|
committer | Diva Canto | 2009-12-31 09:25:16 -0800 |
commit | a8901a40f4526720f68049706cabd34cf9717172 (patch) | |
tree | f64b2d8eed119e8080e3d696e4e822b55f0f5882 /OpenSim/Framework | |
parent | No-op. (diff) | |
download | opensim-SC_OLD-a8901a40f4526720f68049706cabd34cf9717172.zip opensim-SC_OLD-a8901a40f4526720f68049706cabd34cf9717172.tar.gz opensim-SC_OLD-a8901a40f4526720f68049706cabd34cf9717172.tar.bz2 opensim-SC_OLD-a8901a40f4526720f68049706cabd34cf9717172.tar.xz |
Simulation handlers (agents & objects) completed.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IScene.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/IScene.cs b/OpenSim/Framework/IScene.cs index 8067052..27b3d47 100644 --- a/OpenSim/Framework/IScene.cs +++ b/OpenSim/Framework/IScene.cs | |||
@@ -66,6 +66,8 @@ namespace OpenSim.Framework | |||
66 | 66 | ||
67 | float TimeDilation { get; } | 67 | float TimeDilation { get; } |
68 | 68 | ||
69 | bool AllowScriptCrossings { get; } | ||
70 | |||
69 | event restart OnRestart; | 71 | event restart OnRestart; |
70 | 72 | ||
71 | void AddNewClient(IClientAPI client); | 73 | void AddNewClient(IClientAPI client); |
@@ -96,5 +98,7 @@ namespace OpenSim.Framework | |||
96 | void StackModuleInterface<M>(M mod); | 98 | void StackModuleInterface<M>(M mod); |
97 | 99 | ||
98 | void AddCommand(object module, string command, string shorthelp, string longhelp, CommandDelegate callback); | 100 | void AddCommand(object module, string command, string shorthelp, string longhelp, CommandDelegate callback); |
101 | |||
102 | ISceneObject DeserializeObject(string representation); | ||
99 | } | 103 | } |
100 | } | 104 | } |