added OnDisconnectUser event to required classes

This commit is contained in:
Sean Dague
2007-07-30 20:08:33 +00:00
parent 3032831859
commit a47e2d9ae7
4 changed files with 150 additions and 145 deletions

View File

@@ -43,6 +43,7 @@ namespace OpenSim.Framework.Interfaces
public delegate void LinkObjects(uint parent, List<uint> children);
public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY);
public delegate void TeleportLocationRequest(IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags);
public delegate void DisconnectUser();
public delegate void GenericCall(IClientAPI remoteClient);
public delegate void GenericCall2();
@@ -97,6 +98,7 @@ namespace OpenSim.Framework.Interfaces
event LinkObjects OnLinkObjects;
event RequestMapBlocks OnRequestMapBlocks;
event TeleportLocationRequest OnTeleportLocationRequest;
event DisconnectUser OnDisconnectUser;
event GenericCall4 OnDeRezObject;
event GenericCall OnRegionHandShakeReply;