aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs')
-rw-r--r--OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
index ef74677..b8f46dc 100644
--- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
+++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
@@ -196,7 +196,11 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
196 get { throw new System.NotImplementedException(); } 196 get { throw new System.NotImplementedException(); }
197 set { throw new System.NotImplementedException(); } 197 set { throw new System.NotImplementedException(); }
198 } 198 }
199 199 public bool IsLoggingOut
200 {
201 get { throw new System.NotImplementedException(); }
202 set { throw new System.NotImplementedException(); }
203 }
200 public bool SendLogoutPacketWhenClosing 204 public bool SendLogoutPacketWhenClosing
201 { 205 {
202 set { throw new System.NotImplementedException(); } 206 set { throw new System.NotImplementedException(); }
@@ -242,7 +246,7 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
242 public event DeRezObject OnDeRezObject = delegate { }; 246 public event DeRezObject OnDeRezObject = delegate { };
243 public event Action<IClientAPI> OnRegionHandShakeReply = delegate { }; 247 public event Action<IClientAPI> OnRegionHandShakeReply = delegate { };
244 public event GenericCall2 OnRequestWearables = delegate { }; 248 public event GenericCall2 OnRequestWearables = delegate { };
245 public event GenericCall2 OnCompleteMovementToRegion = delegate { }; 249 public event GenericCall1 OnCompleteMovementToRegion = delegate { };
246 public event UpdateAgent OnAgentUpdate = delegate { }; 250 public event UpdateAgent OnAgentUpdate = delegate { };
247 public event AgentRequestSit OnAgentRequestSit = delegate { }; 251 public event AgentRequestSit OnAgentRequestSit = delegate { };
248 public event AgentSit OnAgentSit = delegate { }; 252 public event AgentSit OnAgentSit = delegate { };
@@ -1206,5 +1210,9 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
1206 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) 1210 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals)
1207 { 1211 {
1208 } 1212 }
1213
1214 public void SendChangeUserRights(UUID agentID, UUID friendID, int rights)
1215 {
1216 }
1209 } 1217 }
1210} 1218}