aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs')
-rw-r--r--OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs18
1 files changed, 16 insertions, 2 deletions
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
index 1bdc4f8..4ecbaf9 100644
--- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
+++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
@@ -192,6 +192,11 @@ namespace OpenSim.Client.Sirikata.ClientStack
192 get { return isActive; } 192 get { return isActive; }
193 set { isActive = value; } 193 set { isActive = value; }
194 } 194 }
195 public bool IsLoggingOut
196 {
197 get { return false; }
198 set { }
199 }
195 200
196 public bool SendLogoutPacketWhenClosing 201 public bool SendLogoutPacketWhenClosing
197 { 202 {
@@ -238,7 +243,8 @@ namespace OpenSim.Client.Sirikata.ClientStack
238 public event DeRezObject OnDeRezObject; 243 public event DeRezObject OnDeRezObject;
239 public event Action<IClientAPI> OnRegionHandShakeReply; 244 public event Action<IClientAPI> OnRegionHandShakeReply;
240 public event GenericCall2 OnRequestWearables; 245 public event GenericCall2 OnRequestWearables;
241 public event GenericCall2 OnCompleteMovementToRegion; 246 public event GenericCall1 OnCompleteMovementToRegion;
247 public event UpdateAgent OnPreAgentUpdate;
242 public event UpdateAgent OnAgentUpdate; 248 public event UpdateAgent OnAgentUpdate;
243 public event AgentRequestSit OnAgentRequestSit; 249 public event AgentRequestSit OnAgentRequestSit;
244 public event AgentSit OnAgentSit; 250 public event AgentSit OnAgentSit;
@@ -497,7 +503,7 @@ namespace OpenSim.Client.Sirikata.ClientStack
497 throw new System.NotImplementedException(); 503 throw new System.NotImplementedException();
498 } 504 }
499 505
500 public void SendGenericMessage(string method, List<Byte[]> message) 506 public void SendGenericMessage(string method, List<byte[]> message)
501 { 507 {
502 throw new System.NotImplementedException(); 508 throw new System.NotImplementedException();
503 } 509 }
@@ -1190,6 +1196,14 @@ namespace OpenSim.Client.Sirikata.ClientStack
1190 { 1196 {
1191 } 1197 }
1192 1198
1199 public void SendChangeUserRights(UUID agentID, UUID friendID, int rights)
1200 {
1201 }
1202
1203 public void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId)
1204 {
1205 }
1206
1193 #endregion 1207 #endregion
1194 } 1208 }
1195} 1209}