diff options
Diffstat (limited to 'OpenSim/Framework/IScene.cs')
-rw-r--r-- | OpenSim/Framework/IScene.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Framework/IScene.cs b/OpenSim/Framework/IScene.cs index 0e4d260..5507500 100644 --- a/OpenSim/Framework/IScene.cs +++ b/OpenSim/Framework/IScene.cs | |||
@@ -30,7 +30,7 @@ using libsecondlife; | |||
30 | namespace OpenSim.Framework | 30 | namespace OpenSim.Framework |
31 | { | 31 | { |
32 | public delegate void restart( RegionInfo thisRegion ); | 32 | public delegate void restart( RegionInfo thisRegion ); |
33 | public delegate void regionup ( RegionInfo thisRegion ); | 33 | //public delegate void regionup ( RegionInfo thisRegion ); |
34 | 34 | ||
35 | public enum RegionStatus : int | 35 | public enum RegionStatus : int |
36 | { | 36 | { |
@@ -43,13 +43,12 @@ namespace OpenSim.Framework | |||
43 | public interface IScene | 43 | public interface IScene |
44 | { | 44 | { |
45 | event restart OnRestart; | 45 | event restart OnRestart; |
46 | event regionup OnRegionUp; | ||
47 | 46 | ||
48 | void AddNewClient(IClientAPI client, bool child); | 47 | void AddNewClient(IClientAPI client, bool child); |
49 | void RemoveClient(LLUUID agentID); | 48 | void RemoveClient(LLUUID agentID); |
50 | 49 | ||
51 | void Restart(int seconds); | 50 | void Restart(int seconds); |
52 | void OtherRegionUp(RegionInfo thisRegion); | 51 | bool OtherRegionUp(RegionInfo thisRegion); |
53 | 52 | ||
54 | RegionInfo RegionInfo { get; } | 53 | RegionInfo RegionInfo { get; } |
55 | uint NextLocalId { get; } | 54 | uint NextLocalId { get; } |