aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleApp/MyWorld.cs
diff options
context:
space:
mode:
authorlbsa712007-07-09 21:25:43 +0000
committerlbsa712007-07-09 21:25:43 +0000
commit85dd493614cda12488eb7920713ddda07c921dbc (patch)
treecaa4dc30e786e48645981e192d45acd8c564d5b9 /OpenSim/Region/Examples/SimpleApp/MyWorld.cs
parent* Introduced ClientManager for great justice. (diff)
downloadopensim-SC_OLD-85dd493614cda12488eb7920713ddda07c921dbc.zip
opensim-SC_OLD-85dd493614cda12488eb7920713ddda07c921dbc.tar.gz
opensim-SC_OLD-85dd493614cda12488eb7920713ddda07c921dbc.tar.bz2
opensim-SC_OLD-85dd493614cda12488eb7920713ddda07c921dbc.tar.xz
* some follow up renaming of members et c.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Examples/SimpleApp/MyWorld.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/MyWorld.cs b/OpenSim/Region/Examples/SimpleApp/MyWorld.cs
index b82529a..3c69420 100644
--- a/OpenSim/Region/Examples/SimpleApp/MyWorld.cs
+++ b/OpenSim/Region/Examples/SimpleApp/MyWorld.cs
@@ -15,8 +15,8 @@ namespace SimpleApp
15 { 15 {
16 private List<ScenePresence> m_avatars; 16 private List<ScenePresence> m_avatars;
17 17
18 public MyWorld(ClientManager clientThreads, RegionInfo regionInfo, AuthenticateSessionsBase authen, CommunicationsManager commsMan, AssetCache assetCach, BaseHttpServer httpServer) 18 public MyWorld(ClientManager clientManager, RegionInfo regionInfo, AuthenticateSessionsBase authen, CommunicationsManager commsMan, AssetCache assetCach, BaseHttpServer httpServer)
19 : base(clientThreads, regionInfo, authen, commsMan, assetCach, httpServer) 19 : base(clientManager, regionInfo, authen, commsMan, assetCach, httpServer)
20 { 20 {
21 m_avatars = new List<Avatar>(); 21 m_avatars = new List<Avatar>();
22 } 22 }