diff options
Diffstat (limited to '')
-rw-r--r-- | Common/OpenSim.Framework/Interfaces/IWorld.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/IWorld.cs b/Common/OpenSim.Framework/Interfaces/IWorld.cs new file mode 100644 index 0000000..433e540 --- /dev/null +++ b/Common/OpenSim.Framework/Interfaces/IWorld.cs | |||
@@ -0,0 +1,15 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | using OpenSim.Framework.Types; | ||
6 | |||
7 | namespace OpenSim.Framework.Interfaces | ||
8 | { | ||
9 | public interface IWorld | ||
10 | { | ||
11 | bool AddNewAvatar(IClientAPI remoteClient, bool childAgent); | ||
12 | bool RemoveAvatar(LLUUID agentID); | ||
13 | RegionInfo GetRegionInfo(); | ||
14 | } | ||
15 | } | ||