diff options
Diffstat (limited to 'OpenSim/Examples/SimpleApp/Program.cs')
-rw-r--r-- | OpenSim/Examples/SimpleApp/Program.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Examples/SimpleApp/Program.cs b/OpenSim/Examples/SimpleApp/Program.cs index 1d0702d..b0b68d9 100644 --- a/OpenSim/Examples/SimpleApp/Program.cs +++ b/OpenSim/Examples/SimpleApp/Program.cs | |||
@@ -12,6 +12,8 @@ using OpenSim.UserServer; | |||
12 | using OpenSim.Servers; | 12 | using OpenSim.Servers; |
13 | using OpenSim.Framework; | 13 | using OpenSim.Framework; |
14 | using OpenSim.Caches; | 14 | using OpenSim.Caches; |
15 | using OpenGrid.Framework.Communications; | ||
16 | using OpenSim.LocalCommunications; | ||
15 | 17 | ||
16 | namespace SimpleApp | 18 | namespace SimpleApp |
17 | { | 19 | { |
@@ -51,9 +53,11 @@ namespace SimpleApp | |||
51 | 53 | ||
52 | ClientView.TerrainManager = new TerrainManager(new SecondLife()); | 54 | ClientView.TerrainManager = new TerrainManager(new SecondLife()); |
53 | 55 | ||
54 | RegionInfo regionInfo = new RegionInfo(); | 56 | CommunicationsManager communicationsManager = new CommunicationsLocal(); |
57 | |||
58 | RegionInfo regionInfo = new RegionInfo( ); | ||
55 | 59 | ||
56 | udpServer.LocalWorld = new MyWorld( regionInfo ); | 60 | udpServer.LocalWorld = new MyWorld( packetServer.ClientAPIs, regionInfo, m_circuitManager, communicationsManager, assetCache ); |
57 | 61 | ||
58 | // World world = new World(udpServer.PacketServer.ClientAPIs, regionInfo); | 62 | // World world = new World(udpServer.PacketServer.ClientAPIs, regionInfo); |
59 | // PhysicsScene physicsScene = new NullPhysicsScene(); | 63 | // PhysicsScene physicsScene = new NullPhysicsScene(); |