diff options
author | mingchen | 2007-06-27 16:39:11 +0000 |
---|---|---|
committer | mingchen | 2007-06-27 16:39:11 +0000 |
commit | e41eedc9aeba3eb36cdba4fcdf1e57bea976cab4 (patch) | |
tree | 7c9dbb6c56ff04a12c10e551629d9f6f40af9cf8 /OpenSim/Region/Examples/SimpleApp/MyWorld.cs | |
parent | Some work on restructuring the namespaces / project names. Note this doesn't ... (diff) | |
download | opensim-SC-e41eedc9aeba3eb36cdba4fcdf1e57bea976cab4.zip opensim-SC-e41eedc9aeba3eb36cdba4fcdf1e57bea976cab4.tar.gz opensim-SC-e41eedc9aeba3eb36cdba4fcdf1e57bea976cab4.tar.bz2 opensim-SC-e41eedc9aeba3eb36cdba4fcdf1e57bea976cab4.tar.xz |
*Some more restructuring/fixing -- should compile, but high chance I forgot to add/remove something
Diffstat (limited to 'OpenSim/Region/Examples/SimpleApp/MyWorld.cs')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/MyWorld.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/MyWorld.cs b/OpenSim/Region/Examples/SimpleApp/MyWorld.cs index 01e0c59..89f39d3 100644 --- a/OpenSim/Region/Examples/SimpleApp/MyWorld.cs +++ b/OpenSim/Region/Examples/SimpleApp/MyWorld.cs | |||
@@ -5,20 +5,20 @@ using OpenSim.Framework.Interfaces; | |||
5 | using OpenSim.Framework.Types; | 5 | using OpenSim.Framework.Types; |
6 | using OpenSim.Framework.Console; | 6 | using OpenSim.Framework.Console; |
7 | using libsecondlife; | 7 | using libsecondlife; |
8 | using OpenSim.Region; | 8 | using OpenSim.Region.Environment; |
9 | using Avatar=OpenSim.Region.Scenes.ScenePresence; | 9 | using Avatar=OpenSim.Region.Environment.Scenes.ScenePresence; |
10 | using OpenSim.Region.Scenes; | 10 | using OpenSim.Region.Environment.Scenes; |
11 | using OpenSim.Framework; | 11 | using OpenSim.Framework; |
12 | using OpenSim.Caches; | 12 | using OpenSim.Region.Caches; |
13 | using OpenGrid.Framework.Communications; | 13 | using OpenSim.Framework.Communications; |
14 | using OpenSim.Servers; | 14 | using OpenSim.Framework.Servers; |
15 | 15 | ||
16 | namespace SimpleApp | 16 | namespace SimpleApp |
17 | { | 17 | { |
18 | public class MyWorld : Scene | 18 | public class MyWorld : Scene |
19 | { | 19 | { |
20 | private RegionInfo m_regionInfo; | 20 | private RegionInfo m_regionInfo; |
21 | private List<OpenSim.Region.Scenes.ScenePresence> m_avatars; | 21 | private List<OpenSim.Region.Environment.Scenes.ScenePresence> m_avatars; |
22 | 22 | ||
23 | public MyWorld(Dictionary<uint, IClientAPI> clientThreads, RegionInfo regionInfo, AuthenticateSessionsBase authen, CommunicationsManager commsMan, AssetCache assetCach, BaseHttpServer httpServer) | 23 | public MyWorld(Dictionary<uint, IClientAPI> clientThreads, RegionInfo regionInfo, AuthenticateSessionsBase authen, CommunicationsManager commsMan, AssetCache assetCach, BaseHttpServer httpServer) |
24 | : base(clientThreads, regionInfo, authen, commsMan, assetCach, httpServer) | 24 | : base(clientThreads, regionInfo, authen, commsMan, assetCach, httpServer) |
@@ -76,7 +76,7 @@ namespace SimpleApp | |||
76 | 76 | ||
77 | client.SendRegionHandshake(m_regionInfo); | 77 | client.SendRegionHandshake(m_regionInfo); |
78 | 78 | ||
79 | OpenSim.Region.Scenes.ScenePresence avatar = new Avatar( client, this, m_regionInfo ); | 79 | OpenSim.Region.Environment.Scenes.ScenePresence avatar = new Avatar( client, this, m_regionInfo ); |
80 | 80 | ||
81 | } | 81 | } |
82 | 82 | ||