Change the presence event signatures

0.6.1-post-fixes
Melanie Thielker 2008-11-22 19:40:15 +00:00
parent 29803efda4
commit 84db1e1290
1 changed files with 8 additions and 2 deletions

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
{