diff options
author | Justin Clark-Casey (justincc) | 2010-05-21 23:34:47 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-05-21 23:34:47 +0100 |
commit | 074937e0e510e9be6b7a0e5639d93a93be38d6b1 (patch) | |
tree | 0205725e41fcdd9a5ccfe6cd3e4cc39aba36079e /OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs | |
parent | Apply adaption of patch in http://opensimulator.org/mantis/view.php?id=4628 (diff) | |
download | opensim-SC-074937e0e510e9be6b7a0e5639d93a93be38d6b1.zip opensim-SC-074937e0e510e9be6b7a0e5639d93a93be38d6b1.tar.gz opensim-SC-074937e0e510e9be6b7a0e5639d93a93be38d6b1.tar.bz2 opensim-SC-074937e0e510e9be6b7a0e5639d93a93be38d6b1.tar.xz |
Apply http://opensimulator.org/mantis/view.php?id=4627
Adds OwnerId and CreatorId properties to MRM.IObject
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs index 30580e7..29f7f68 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs | |||
@@ -98,6 +98,16 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
98 | String Description { get; set; } | 98 | String Description { get; set; } |
99 | 99 | ||
100 | /// <summary> | 100 | /// <summary> |
101 | /// Returns the UUID of the Owner of the Object. | ||
102 | /// </summary> | ||
103 | UUID OwnerId { get; } | ||
104 | |||
105 | /// <summary> | ||
106 | /// Returns the UUID of the Creator of the Object. | ||
107 | /// </summary> | ||
108 | UUID CreatorId { get; } | ||
109 | |||
110 | /// <summary> | ||
101 | /// Returns the root object of a linkset. If this object is the root, it will return itself. | 111 | /// Returns the root object of a linkset. If this object is the root, it will return itself. |
102 | /// </summary> | 112 | /// </summary> |
103 | IObject Root { get; } | 113 | IObject Root { get; } |