aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneBase.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneBase.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs
index 1494437..b0ec352 100644
--- a/OpenSim/Region/Environment/Scenes/SceneBase.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs
@@ -68,7 +68,13 @@ namespace OpenSim.Region.Environment.Scenes
68 68
69 protected object m_syncRoot = new object(); 69 protected object m_syncRoot = new object();
70 private uint m_nextLocalId = 8880000; 70 private uint m_nextLocalId = 8880000;
71 protected AssetCache assetCache; 71 private AssetCache m_assetCache;
72
73 public AssetCache AssetCache
74 {
75 get { return m_assetCache; }
76 set { m_assetCache = value; }
77 }
72 78
73 #endregion 79 #endregion
74 80