diff options
author | Homer Horwitz | 2008-11-24 22:07:45 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-11-24 22:07:45 +0000 |
commit | 62c263d32b1cfb2dfc8e3681ea93f2dd33c077ca (patch) | |
tree | 9d67fa434c0025ee08248c8296282c1772ad5ec0 /OpenSim/Region/Interfaces/IPresenceModule.cs | |
parent | - Evaluate config only once (diff) | |
download | opensim-SC_OLD-62c263d32b1cfb2dfc8e3681ea93f2dd33c077ca.zip opensim-SC_OLD-62c263d32b1cfb2dfc8e3681ea93f2dd33c077ca.tar.gz opensim-SC_OLD-62c263d32b1cfb2dfc8e3681ea93f2dd33c077ca.tar.bz2 opensim-SC_OLD-62c263d32b1cfb2dfc8e3681ea93f2dd33c077ca.tar.xz |
WIP: Adding a few things to PresenceModule. Not quite finished yet.
Diffstat (limited to 'OpenSim/Region/Interfaces/IPresenceModule.cs')
-rw-r--r-- | OpenSim/Region/Interfaces/IPresenceModule.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Interfaces/IPresenceModule.cs b/OpenSim/Region/Interfaces/IPresenceModule.cs index 2023f25..23cf064 100644 --- a/OpenSim/Region/Interfaces/IPresenceModule.cs +++ b/OpenSim/Region/Interfaces/IPresenceModule.cs | |||
@@ -35,6 +35,12 @@ namespace OpenSim.Region.Interfaces | |||
35 | { | 35 | { |
36 | public UUID userID; | 36 | public UUID userID; |
37 | public UUID regionID; | 37 | public UUID regionID; |
38 | |||
39 | public PresenceInfo(UUID userID, UUID regionID) | ||
40 | { | ||
41 | this.userID = userID; | ||
42 | this.regionID = regionID; | ||
43 | } | ||
38 | } | 44 | } |
39 | 45 | ||
40 | public delegate void PresenceChange(PresenceInfo info); | 46 | public delegate void PresenceChange(PresenceInfo info); |