added OnDisconnectUser event to required classes
parent
3032831859
commit
a47e2d9ae7
|
@ -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;
|
||||
|
|
|
@ -21,6 +21,7 @@ namespace OpenSim.Framework
|
|||
public event LinkObjects OnLinkObjects;
|
||||
public event RequestMapBlocks OnRequestMapBlocks;
|
||||
public event TeleportLocationRequest OnTeleportLocationRequest;
|
||||
public event DisconnectUser OnDisconnectUser;
|
||||
|
||||
public event GenericCall4 OnDeRezObject;
|
||||
public event GenericCall OnRegionHandShakeReply;
|
||||
|
|
|
@ -79,6 +79,7 @@ namespace OpenSim.Region.ClientStack
|
|||
public event GenericCall6 OnRemoveAvatar;
|
||||
public event RequestMapBlocks OnRequestMapBlocks;
|
||||
public event TeleportLocationRequest OnTeleportLocationRequest;
|
||||
public event DisconnectUser OnDisconnectUser;
|
||||
|
||||
public event CreateNewInventoryItem OnCreateNewInventoryItem;
|
||||
public event CreateInventoryFolder OnCreateNewInventoryFolder;
|
||||
|
|
|
@ -34,6 +34,7 @@ namespace SimpleApp
|
|||
public event LinkObjects OnLinkObjects;
|
||||
public event RequestMapBlocks OnRequestMapBlocks;
|
||||
public event TeleportLocationRequest OnTeleportLocationRequest;
|
||||
public event DisconnectUser OnDisconnectUser;
|
||||
|
||||
public event GenericCall4 OnDeRezObject;
|
||||
public event GenericCall OnRegionHandShakeReply;
|
||||
|
|
Loading…
Reference in New Issue