diff options
author | Tedd Hansen | 2007-09-22 13:15:52 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-09-22 13:15:52 +0000 |
commit | 59f0920a8fc58ea6443768591b762f5673134840 (patch) | |
tree | da6d13536a44f2b1aeef6a63dec4b099b617c16e /OpenSim/Grid/ScriptServer/RegionsManager.cs | |
parent | * There. I think this concludes todays work on moving stuff to Broadcast() (diff) | |
download | opensim-SC_OLD-59f0920a8fc58ea6443768591b762f5673134840.zip opensim-SC_OLD-59f0920a8fc58ea6443768591b762f5673134840.tar.gz opensim-SC_OLD-59f0920a8fc58ea6443768591b762f5673134840.tar.bz2 opensim-SC_OLD-59f0920a8fc58ea6443768591b762f5673134840.tar.xz |
Stand Alone ScriptEngine: early framework, ongoing planning (don't touch yet, will go through major reorganizing). Still a LOT of things needs to be solved...
Diffstat (limited to 'OpenSim/Grid/ScriptServer/RegionsManager.cs')
-rw-r--r-- | OpenSim/Grid/ScriptServer/RegionsManager.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Grid/ScriptServer/RegionsManager.cs b/OpenSim/Grid/ScriptServer/RegionsManager.cs new file mode 100644 index 0000000..0e1fad1 --- /dev/null +++ b/OpenSim/Grid/ScriptServer/RegionsManager.cs | |||
@@ -0,0 +1,19 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Grid.ScriptServer | ||
6 | { | ||
7 | // Maintains all regions | ||
8 | class RegionsManager | ||
9 | { | ||
10 | private List<RegionConnectionManager> Regions = new List<RegionConnectionManager>(); | ||
11 | |||
12 | public ScriptServer m_ScriptServer; | ||
13 | public RegionsManager(ScriptServer scriptServer) | ||
14 | { | ||
15 | m_ScriptServer = scriptServer; | ||
16 | } | ||
17 | |||
18 | } | ||
19 | } | ||