diff options
author | lbsa71 | 2007-09-18 12:13:44 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-18 12:13:44 +0000 |
commit | 0bac4b430c264741b7f9e63b5d8fb781ba306c68 (patch) | |
tree | 8106614d6608aeb82b8d455ed95a01725376d9a7 /OpenSim/Framework/General/NullClientAPI.cs | |
parent | * Replaced usage of ClientView with IClientAPI (diff) | |
download | opensim-SC_OLD-0bac4b430c264741b7f9e63b5d8fb781ba306c68.zip opensim-SC_OLD-0bac4b430c264741b7f9e63b5d8fb781ba306c68.tar.gz opensim-SC_OLD-0bac4b430c264741b7f9e63b5d8fb781ba306c68.tar.bz2 opensim-SC_OLD-0bac4b430c264741b7f9e63b5d8fb781ba306c68.tar.xz |
* Handlerized ViewerEffect
* Now there-is-only-client-manager
* First step towards moving Logout and ConnectionClosed out of Client and into something else (which will let us get rid of ClientView reference to ClientManager
* General posititvity, peace, love and understanding
Diffstat (limited to 'OpenSim/Framework/General/NullClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/General/NullClientAPI.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index 2b6de9e..2fe46d6 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs | |||
@@ -52,6 +52,7 @@ namespace OpenSim.Framework | |||
52 | public event StatusChange OnChildAgentStatus; | 52 | public event StatusChange OnChildAgentStatus; |
53 | public event GenericCall2 OnStopMovement; | 53 | public event GenericCall2 OnStopMovement; |
54 | public event GenericCall6 OnRemoveAvatar; | 54 | public event GenericCall6 OnRemoveAvatar; |
55 | public event ViewerEffectEventHandler OnViewerEffect; | ||
55 | 56 | ||
56 | public event CreateNewInventoryItem OnCreateNewInventoryItem; | 57 | public event CreateNewInventoryItem OnCreateNewInventoryItem; |
57 | public event CreateInventoryFolder OnCreateNewInventoryFolder; | 58 | public event CreateInventoryFolder OnCreateNewInventoryFolder; |
@@ -172,9 +173,11 @@ namespace OpenSim.Framework | |||
172 | { | 173 | { |
173 | } | 174 | } |
174 | 175 | ||
175 | public void ConnectionClosed() | 176 | public void Close() |
176 | { | 177 | { |
177 | } | 178 | } |
179 | |||
180 | |||
178 | } | 181 | } |
179 | } | 182 | } |
180 | 183 | ||