diff options
author | Sean Dague | 2007-07-30 20:08:33 +0000 |
---|---|---|
committer | Sean Dague | 2007-07-30 20:08:33 +0000 |
commit | a47e2d9ae74f0ea2484ab38156f52605b08f9be2 (patch) | |
tree | e4030c1bb38c31cb36ebdc0c0a58ccaba8b4b97a /OpenSim/Region | |
parent | * Raised ping timeout to 150 seconds (diff) | |
download | opensim-SC_OLD-a47e2d9ae74f0ea2484ab38156f52605b08f9be2.zip opensim-SC_OLD-a47e2d9ae74f0ea2484ab38156f52605b08f9be2.tar.gz opensim-SC_OLD-a47e2d9ae74f0ea2484ab38156f52605b08f9be2.tar.bz2 opensim-SC_OLD-a47e2d9ae74f0ea2484ab38156f52605b08f9be2.tar.xz |
added OnDisconnectUser event to required classes
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.API.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.API.cs b/OpenSim/Region/ClientStack/ClientView.API.cs index 4b0352b..392745f 100644 --- a/OpenSim/Region/ClientStack/ClientView.API.cs +++ b/OpenSim/Region/ClientStack/ClientView.API.cs | |||
@@ -79,6 +79,7 @@ namespace OpenSim.Region.ClientStack | |||
79 | public event GenericCall6 OnRemoveAvatar; | 79 | public event GenericCall6 OnRemoveAvatar; |
80 | public event RequestMapBlocks OnRequestMapBlocks; | 80 | public event RequestMapBlocks OnRequestMapBlocks; |
81 | public event TeleportLocationRequest OnTeleportLocationRequest; | 81 | public event TeleportLocationRequest OnTeleportLocationRequest; |
82 | public event DisconnectUser OnDisconnectUser; | ||
82 | 83 | ||
83 | public event CreateNewInventoryItem OnCreateNewInventoryItem; | 84 | public event CreateNewInventoryItem OnCreateNewInventoryItem; |
84 | public event CreateInventoryFolder OnCreateNewInventoryFolder; | 85 | public event CreateInventoryFolder OnCreateNewInventoryFolder; |
diff --git a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs index b9ffb71..f7d9b79 100644 --- a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | |||
@@ -34,6 +34,7 @@ namespace SimpleApp | |||
34 | public event LinkObjects OnLinkObjects; | 34 | public event LinkObjects OnLinkObjects; |
35 | public event RequestMapBlocks OnRequestMapBlocks; | 35 | public event RequestMapBlocks OnRequestMapBlocks; |
36 | public event TeleportLocationRequest OnTeleportLocationRequest; | 36 | public event TeleportLocationRequest OnTeleportLocationRequest; |
37 | public event DisconnectUser OnDisconnectUser; | ||
37 | 38 | ||
38 | public event GenericCall4 OnDeRezObject; | 39 | public event GenericCall4 OnDeRezObject; |
39 | public event GenericCall OnRegionHandShakeReply; | 40 | public event GenericCall OnRegionHandShakeReply; |