diff options
Diffstat (limited to 'OpenSim/Framework/IScene.cs')
-rw-r--r-- | OpenSim/Framework/IScene.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/IScene.cs b/OpenSim/Framework/IScene.cs index 8067052..19ab409 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); |
@@ -89,6 +91,8 @@ namespace OpenSim.Framework | |||
89 | /// </exception> | 91 | /// </exception> |
90 | bool PresenceChildStatus(UUID agentId); | 92 | bool PresenceChildStatus(UUID agentId); |
91 | 93 | ||
94 | bool TryGetScenePresence(UUID agentID, out object scenePresence); | ||
95 | |||
92 | T RequestModuleInterface<T>(); | 96 | T RequestModuleInterface<T>(); |
93 | T[] RequestModuleInterfaces<T>(); | 97 | T[] RequestModuleInterfaces<T>(); |
94 | 98 | ||
@@ -96,5 +100,7 @@ namespace OpenSim.Framework | |||
96 | void StackModuleInterface<M>(M mod); | 100 | void StackModuleInterface<M>(M mod); |
97 | 101 | ||
98 | void AddCommand(object module, string command, string shorthelp, string longhelp, CommandDelegate callback); | 102 | void AddCommand(object module, string command, string shorthelp, string longhelp, CommandDelegate callback); |
103 | |||
104 | ISceneObject DeserializeObject(string representation); | ||
99 | } | 105 | } |
100 | } | 106 | } |