aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IScene.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-11-26 05:02:18 +0000
committerTeravus Ovares2007-11-26 05:02:18 +0000
commit175b6115f19f9bad7c81fde625250b3a7f8a33f2 (patch)
treef907f3b409eca34017f6e18dcf4d644b623d0302 /OpenSim/Framework/IScene.cs
parentAdded Region name to the terrain texture description that gets sent to the as... (diff)
downloadopensim-SC_OLD-175b6115f19f9bad7c81fde625250b3a7f8a33f2.zip
opensim-SC_OLD-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.gz
opensim-SC_OLD-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.bz2
opensim-SC_OLD-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.xz
* Restarting regions with the estate tools works in sandbox mode. I'm still working on grid mode, however. It doesn't break anything, but that feature doesn't work in grid mode yet either.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IScene.cs5
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;
30namespace OpenSim.Framework 30namespace 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; }