mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
Change PresenceData to PresenceInfo to remove a naming conflict in the
OpenSim.Data namespace
This commit is contained in:
@@ -34,8 +34,8 @@ namespace OpenSim.Data
|
||||
{
|
||||
public class PresenceData
|
||||
{
|
||||
public UUID PrincipalID;
|
||||
public UUID RegionID;
|
||||
public UUID UUID;
|
||||
public UUID currentRegion;
|
||||
public Dictionary<string, object> Data;
|
||||
}
|
||||
|
||||
|
||||
@@ -31,7 +31,15 @@ using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Services.Interfaces
|
||||
{
|
||||
public class PresenceInfo
|
||||
{
|
||||
public UUID PrincipalID;
|
||||
public UUID RegionID;
|
||||
public Dictionary<string, object> Data;
|
||||
}
|
||||
|
||||
public interface IPresenceService
|
||||
{
|
||||
bool Report(PresenceInfo presence);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -49,5 +49,10 @@ namespace OpenSim.Services.PresenceService
|
||||
: base(config)
|
||||
{
|
||||
}
|
||||
|
||||
public bool Report(PresenceInfo presence)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user