aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/SEUser.cs
diff options
context:
space:
mode:
authorJeff Ames2009-04-06 14:24:13 +0000
committerJeff Ames2009-04-06 14:24:13 +0000
commit5f34bd73fbca765064c4b3811d1f67da36cbf5ae (patch)
treea91d8995b5677a524038e8b43c168ac2a28dd2c4 /OpenSim/Region/OptionalModules/Scripting/Minimodule/SEUser.cs
parentThank you, Intimidated, for a patch too fix the movement animation handling (diff)
downloadopensim-SC_OLD-5f34bd73fbca765064c4b3811d1f67da36cbf5ae.zip
opensim-SC_OLD-5f34bd73fbca765064c4b3811d1f67da36cbf5ae.tar.gz
opensim-SC_OLD-5f34bd73fbca765064c4b3811d1f67da36cbf5ae.tar.bz2
opensim-SC_OLD-5f34bd73fbca765064c4b3811d1f67da36cbf5ae.tar.xz
Update svn properties.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/SEUser.cs68
1 files changed, 34 insertions, 34 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SEUser.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SEUser.cs
index a35e051..a7da114 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SEUser.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SEUser.cs
@@ -1,34 +1,34 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using OpenMetaverse; 4using OpenMetaverse;
5 5
6namespace OpenSim.Region.OptionalModules.Scripting.Minimodule 6namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
7{ 7{
8 class SEUser : ISocialEntity 8 class SEUser : ISocialEntity
9 { 9 {
10 private readonly UUID m_uuid; 10 private readonly UUID m_uuid;
11 private readonly string m_name; 11 private readonly string m_name;
12 12
13 public SEUser(UUID uuid, string name) 13 public SEUser(UUID uuid, string name)
14 { 14 {
15 m_uuid = uuid; 15 m_uuid = uuid;
16 m_name = name; 16 m_name = name;
17 } 17 }
18 18
19 public UUID GlobalID 19 public UUID GlobalID
20 { 20 {
21 get { return m_uuid; } 21 get { return m_uuid; }
22 } 22 }
23 23
24 public string Name 24 public string Name
25 { 25 {
26 get { return m_name; } 26 get { return m_name; }
27 } 27 }
28 28
29 public bool IsUser 29 public bool IsUser
30 { 30 {
31 get { return true; } 31 get { return true; }
32 } 32 }
33 } 33 }
34} 34}