diff options
author | lbsa71 | 2007-09-23 23:55:29 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-23 23:55:29 +0000 |
commit | b3eeb5a8dcdb91d47037234540c5045cdfb9977a (patch) | |
tree | 47e5965e061861cb1ee57bee4b319b432e8f63d8 /OpenSim/Region/Examples/SimpleApp/Program.cs | |
parent | fix to do hollow prims correctly. Reported from (diff) | |
download | opensim-SC_OLD-b3eeb5a8dcdb91d47037234540c5045cdfb9977a.zip opensim-SC_OLD-b3eeb5a8dcdb91d47037234540c5045cdfb9977a.tar.gz opensim-SC_OLD-b3eeb5a8dcdb91d47037234540c5045cdfb9977a.tar.bz2 opensim-SC_OLD-b3eeb5a8dcdb91d47037234540c5045cdfb9977a.tar.xz |
* Purged 'Regions' code pending Agent layer grok.
* Changed so prims aren't loaded until AFTER parcels.
* The region startup flow is still an ungodly rats nest.
Diffstat (limited to 'OpenSim/Region/Examples/SimpleApp/Program.cs')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/Program.cs | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/Program.cs b/OpenSim/Region/Examples/SimpleApp/Program.cs index a7b92f4..2ff9ff0 100644 --- a/OpenSim/Region/Examples/SimpleApp/Program.cs +++ b/OpenSim/Region/Examples/SimpleApp/Program.cs | |||
@@ -1,23 +1,16 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.IO; | ||
3 | using System.Net; | 4 | using System.Net; |
4 | using libsecondlife; | 5 | using libsecondlife; |
5 | using OpenSim.Framework; | 6 | using OpenSim.Framework.Communications.Caches; |
6 | using OpenSim.Framework.Console; | 7 | using OpenSim.Framework.Console; |
7 | using OpenSim.Framework.Interfaces; | ||
8 | using OpenSim.Framework.Servers; | ||
9 | using OpenSim.Framework.Types; | 8 | using OpenSim.Framework.Types; |
10 | using OpenSim.Region.Physics.Manager; | ||
11 | |||
12 | using OpenSim.Region.Capabilities; | ||
13 | using OpenSim.Region.ClientStack; | 9 | using OpenSim.Region.ClientStack; |
14 | using OpenSim.Region.Communications.Local; | 10 | using OpenSim.Region.Communications.Local; |
15 | using OpenSim.Framework.Communications.Caches; | ||
16 | using System.Timers; | ||
17 | using OpenSim.Region.Environment.Scenes; | ||
18 | using OpenSim.Framework.Data; | ||
19 | using OpenSim.Region.Environment; | 11 | using OpenSim.Region.Environment; |
20 | using System.IO; | 12 | using OpenSim.Region.Environment.Scenes; |
13 | using OpenSim.Region.Physics.Manager; | ||
21 | 14 | ||
22 | namespace SimpleApp | 15 | namespace SimpleApp |
23 | { | 16 | { |