Change the presence event signatures

This commit is contained in:
Melanie Thielker
2008-11-22 19:40:15 +00:00
parent 29803efda4
commit 84db1e1290

View File

@@ -31,8 +31,14 @@ using OpenMetaverse;
namespace OpenSim.Region.Interfaces
{
public delegate void PresenceChange(UUID userID, bool online);
public delegate void BulkPresenceData(UUID[] userID, bool[] online);
public struct PresenceInfo
{
public UUID userID;
public UUID regionID;
}
public delegate void PresenceChange(PresenceInfo info);
public delegate void BulkPresenceData(PresenceInfo[] info);
public interface IPresenceModule
{