diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/ISocialEntity.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/ISocialEntity.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/ISocialEntity.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/ISocialEntity.cs new file mode 100644 index 0000000..fe4826a --- /dev/null +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/ISocialEntity.cs | |||
@@ -0,0 +1,14 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenMetaverse; | ||
5 | |||
6 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | ||
7 | { | ||
8 | interface ISocialEntity | ||
9 | { | ||
10 | UUID GlobalID { get; } | ||
11 | string Name { get; } | ||
12 | bool IsUser { get; } | ||
13 | } | ||
14 | } \ No newline at end of file | ||