diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs b/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs index d7c80f7..17bd48b 100644 --- a/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs +++ b/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs | |||
@@ -128,6 +128,12 @@ namespace OpenSim.Region.Framework.Interfaces | |||
128 | /// <param name="regionUUID">the region UUID</param> | 128 | /// <param name="regionUUID">the region UUID</param> |
129 | void RemoveRegionEnvironmentSettings(UUID regionUUID); | 129 | void RemoveRegionEnvironmentSettings(UUID regionUUID); |
130 | 130 | ||
131 | void SaveExtra(UUID regionID, string name, string val); | ||
132 | |||
133 | void RemoveExtra(UUID regionID, string name); | ||
134 | |||
135 | Dictionary<string, string> GetExtra(UUID regionID); | ||
136 | |||
131 | void Shutdown(); | 137 | void Shutdown(); |
132 | } | 138 | } |
133 | } | 139 | } |