added OnDisconnectUser event to required classes

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

View File

@ -21,6 +21,7 @@ namespace OpenSim.Framework
public event LinkObjects OnLinkObjects; public event LinkObjects OnLinkObjects;
public event RequestMapBlocks OnRequestMapBlocks; public event RequestMapBlocks OnRequestMapBlocks;
public event TeleportLocationRequest OnTeleportLocationRequest; public event TeleportLocationRequest OnTeleportLocationRequest;
public event DisconnectUser OnDisconnectUser;
public event GenericCall4 OnDeRezObject; public event GenericCall4 OnDeRezObject;
public event GenericCall OnRegionHandShakeReply; public event GenericCall OnRegionHandShakeReply;

View File

@ -79,6 +79,7 @@ namespace OpenSim.Region.ClientStack
public event GenericCall6 OnRemoveAvatar; public event GenericCall6 OnRemoveAvatar;
public event RequestMapBlocks OnRequestMapBlocks; public event RequestMapBlocks OnRequestMapBlocks;
public event TeleportLocationRequest OnTeleportLocationRequest; public event TeleportLocationRequest OnTeleportLocationRequest;
public event DisconnectUser OnDisconnectUser;
public event CreateNewInventoryItem OnCreateNewInventoryItem; public event CreateNewInventoryItem OnCreateNewInventoryItem;
public event CreateInventoryFolder OnCreateNewInventoryFolder; public event CreateInventoryFolder OnCreateNewInventoryFolder;

View File

@ -34,6 +34,7 @@ namespace SimpleApp
public event LinkObjects OnLinkObjects; public event LinkObjects OnLinkObjects;
public event RequestMapBlocks OnRequestMapBlocks; public event RequestMapBlocks OnRequestMapBlocks;
public event TeleportLocationRequest OnTeleportLocationRequest; public event TeleportLocationRequest OnTeleportLocationRequest;
public event DisconnectUser OnDisconnectUser;
public event GenericCall4 OnDeRezObject; public event GenericCall4 OnDeRezObject;
public event GenericCall OnRegionHandShakeReply; public event GenericCall OnRegionHandShakeReply;