Change FriendsModule, InstantMessageModule, MessageTransferModule, MuteListModule, OfflineMessageModule, PresenceModule, InventoryTransferModule and LureModule to new style. Reduce FriendsModule and PresenceModule to shells.

This commit is contained in:
Melanie
2009-12-28 01:24:15 +00:00
parent 0f5219a004
commit eebddcd5e6
11 changed files with 306 additions and 1580 deletions

View File

@@ -31,13 +31,13 @@ namespace OpenSim.Region.Framework.Interfaces
{
public struct PresenceInfo
{
public UUID userID;
public UUID regionID;
public string UserID;
public UUID RegionID;
public PresenceInfo(UUID userID, UUID regionID)
public PresenceInfo(string userID, UUID regionID)
{
this.userID = userID;
this.regionID = regionID;
UserID = userID;
RegionID = regionID;
}
}