mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
Change FriendsModule, InstantMessageModule, MessageTransferModule, MuteListModule, OfflineMessageModule, PresenceModule, InventoryTransferModule and LureModule to new style. Reduce FriendsModule and PresenceModule to shells.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user