WIP: Adding a few things to PresenceModule. Not quite finished yet.

This commit is contained in:
Homer Horwitz
2008-11-24 22:07:45 +00:00
parent c13bf719e1
commit 62c263d32b
4 changed files with 101 additions and 3 deletions

View File

@@ -35,6 +35,12 @@ namespace OpenSim.Region.Interfaces
{
public UUID userID;
public UUID regionID;
public PresenceInfo(UUID userID, UUID regionID)
{
this.userID = userID;
this.regionID = regionID;
}
}
public delegate void PresenceChange(PresenceInfo info);