diff options
author | gareth | 2007-03-04 00:44:26 +0000 |
---|---|---|
committer | gareth | 2007-03-04 00:44:26 +0000 |
commit | 572ab939369de8ccb666b31029cad119a965a57a (patch) | |
tree | 2c70798e4e33bc712fbe7bab7742944ef5215001 /src/Main.cs | |
parent | Rollback to r117 (diff) | |
download | opensim-SC_OLD-572ab939369de8ccb666b31029cad119a965a57a.zip opensim-SC_OLD-572ab939369de8ccb666b31029cad119a965a57a.tar.gz opensim-SC_OLD-572ab939369de8ccb666b31029cad119a965a57a.tar.bz2 opensim-SC_OLD-572ab939369de8ccb666b31029cad119a965a57a.tar.xz |
Merged makomk's patch as per bug #61
Rescued my brain ready to implement animations and proper velocity encoding
Diffstat (limited to 'src/Main.cs')
-rw-r--r-- | src/Main.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Main.cs b/src/Main.cs index 146d837..fe2183b 100644 --- a/src/Main.cs +++ b/src/Main.cs | |||
@@ -46,7 +46,7 @@ namespace OpenSim | |||
46 | /// </summary> | 46 | /// </summary> |
47 | public class OpenSim_Main | 47 | public class OpenSim_Main |
48 | { | 48 | { |
49 | private static OpenSim_Main sim; | 49 | public static OpenSim_Main sim; |
50 | public static SimConfig cfg; | 50 | public static SimConfig cfg; |
51 | public static World local_world; | 51 | public static World local_world; |
52 | private static Thread MainListener; | 52 | private static Thread MainListener; |
@@ -68,6 +68,7 @@ namespace OpenSim | |||
68 | sim.Startup(); | 68 | sim.Startup(); |
69 | while(true) { | 69 | while(true) { |
70 | local_world.DoStuff(); | 70 | local_world.DoStuff(); |
71 | Thread.Sleep(100); | ||
71 | } | 72 | } |
72 | } | 73 | } |
73 | 74 | ||