diff options
author | Adam Frisby | 2009-04-04 08:36:45 +0000 |
---|---|---|
committer | Adam Frisby | 2009-04-04 08:36:45 +0000 |
commit | 23193ab5380e67d3b623db255ee98e84f09cccad (patch) | |
tree | 9203666576f6399badc79a6b3eff876c20da7e88 /OpenSim/Region/OptionalModules | |
parent | * Renamed Heightmap.Height to Heightmap.Length to avoid confusion about axis. (diff) | |
download | opensim-SC_OLD-23193ab5380e67d3b623db255ee98e84f09cccad.zip opensim-SC_OLD-23193ab5380e67d3b623db255ee98e84f09cccad.tar.gz opensim-SC_OLD-23193ab5380e67d3b623db255ee98e84f09cccad.tar.bz2 opensim-SC_OLD-23193ab5380e67d3b623db255ee98e84f09cccad.tar.xz |
* Changed IPersistence interface so that passing the MRMBase is unessecary.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/IPersistence.cs | 10 |
2 files changed, 5 insertions, 7 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs index 0308079..0b8fc37 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs | |||
@@ -1,4 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) Contributors, http://opensimulator.org/ | 2 | * Copyright (c) Contributors, http://opensimulator.org/ |
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | 3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. |
4 | * | 4 | * |
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IPersistence.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IPersistence.cs index 6020a7a..b6d79d4 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IPersistence.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IPersistence.cs | |||
@@ -6,8 +6,8 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
6 | { | 6 | { |
7 | interface IPersistence | 7 | interface IPersistence |
8 | { | 8 | { |
9 | Object Get(MRMBase state, Guid storageID); | 9 | Object Get(Guid storageID); |
10 | Object Get(MRMBase state); | 10 | Object Get(); |
11 | 11 | ||
12 | /// <summary> | 12 | /// <summary> |
13 | /// Stores 'data' into the persistence system | 13 | /// Stores 'data' into the persistence system |
@@ -15,17 +15,15 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
15 | /// under the ID 'storageID'. This data may | 15 | /// under the ID 'storageID'. This data may |
16 | /// be accessed by other scripts however. | 16 | /// be accessed by other scripts however. |
17 | /// </summary> | 17 | /// </summary> |
18 | /// <param name="state"></param> | ||
19 | /// <param name="storageID"></param> | 18 | /// <param name="storageID"></param> |
20 | /// <param name="data"></param> | 19 | /// <param name="data"></param> |
21 | void Put(MRMBase state, Guid storageID, Object data); | 20 | void Put(Guid storageID, Object data); |
22 | 21 | ||
23 | /// <summary> | 22 | /// <summary> |
24 | /// Stores 'data' into the persistence system | 23 | /// Stores 'data' into the persistence system |
25 | /// using the default ID for this script. | 24 | /// using the default ID for this script. |
26 | /// </summary> | 25 | /// </summary> |
27 | /// <param name="state"></param> | ||
28 | /// <param name="data"></param> | 26 | /// <param name="data"></param> |
29 | void Put(MRMBase state, Object data); | 27 | void Put(Object data); |
30 | } | 28 | } |
31 | } | 29 | } |