aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs
diff options
context:
space:
mode:
authorlbsa712007-09-18 12:13:44 +0000
committerlbsa712007-09-18 12:13:44 +0000
commit0bac4b430c264741b7f9e63b5d8fb781ba306c68 (patch)
tree8106614d6608aeb82b8d455ed95a01725376d9a7 /OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs
parent* Replaced usage of ClientView with IClientAPI (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs
index 72a1e19..a055339 100644
--- a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs
@@ -43,6 +43,7 @@ namespace SimpleApp
43 public event UpdateVector OnGrabObject; 43 public event UpdateVector OnGrabObject;
44 public event ObjectSelect OnDeGrabObject; 44 public event ObjectSelect OnDeGrabObject;
45 public event MoveObject OnGrabUpdate; 45 public event MoveObject OnGrabUpdate;
46 public event ViewerEffectEventHandler OnViewerEffect;
46 47
47 48
48 public event UpdateShape OnUpdatePrimShape; 49 public event UpdateShape OnUpdatePrimShape;
@@ -228,7 +229,7 @@ namespace SimpleApp
228 { 229 {
229 } 230 }
230 231
231 public void ConnectionClosed() 232 public void Close()
232 { 233 {
233 } 234 }
234 } 235 }