diff options
author | Adam Frisby | 2008-04-29 14:04:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-29 14:04:55 +0000 |
commit | 375163a6fece8b3a57c7555246abe8338223a599 (patch) | |
tree | 163001ca96a4b4d08589e9772f78510677d5d0dc /OpenSim/Framework/IScene.cs | |
parent | Patch from Melanie: 0001087: Crash to bash de-linking objects. Thanks Melanie! (diff) | |
download | opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.zip opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.gz opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.bz2 opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.xz |
* Spring cleaning.
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
Diffstat (limited to 'OpenSim/Framework/IScene.cs')
-rw-r--r-- | OpenSim/Framework/IScene.cs | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/OpenSim/Framework/IScene.cs b/OpenSim/Framework/IScene.cs index cdf6257..018b51f 100644 --- a/OpenSim/Framework/IScene.cs +++ b/OpenSim/Framework/IScene.cs | |||
@@ -39,11 +39,16 @@ namespace OpenSim.Framework | |||
39 | Up = 1, | 39 | Up = 1, |
40 | Crashed = 2, | 40 | Crashed = 2, |
41 | Starting = 3, | 41 | Starting = 3, |
42 | SlaveScene = 4 | 42 | SlaveScene = 4 |
43 | }; | 43 | } ; |
44 | 44 | ||
45 | public interface IScene | 45 | public interface IScene |
46 | { | 46 | { |
47 | RegionInfo RegionInfo { get; } | ||
48 | uint NextLocalId { get; } | ||
49 | RegionStatus Region_Status { get; set; } | ||
50 | |||
51 | ClientManager ClientManager { get; } | ||
47 | event restart OnRestart; | 52 | event restart OnRestart; |
48 | 53 | ||
49 | void AddNewClient(IClientAPI client, bool child); | 54 | void AddNewClient(IClientAPI client, bool child); |
@@ -55,15 +60,8 @@ namespace OpenSim.Framework | |||
55 | 60 | ||
56 | string GetSimulatorVersion(); | 61 | string GetSimulatorVersion(); |
57 | 62 | ||
58 | RegionInfo RegionInfo { get; } | ||
59 | uint NextLocalId { get; } | ||
60 | |||
61 | bool PresenceChildStatus(LLUUID avatarID); | 63 | bool PresenceChildStatus(LLUUID avatarID); |
62 | 64 | ||
63 | RegionStatus Region_Status { get; set; } | 65 | string GetCapsPath(LLUUID agentId); |
64 | |||
65 | ClientManager ClientManager { get; } | ||
66 | |||
67 | string GetCapsPath(LLUUID agentId); | ||
68 | } | 66 | } |
69 | } | 67 | } \ No newline at end of file |