diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs index f45cb44..1da746a 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,8 @@ 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 { }; |
250 | public event UpdateAgent OnPreAgentUpdate; | ||
246 | public event UpdateAgent OnAgentUpdate = delegate { }; | 251 | public event UpdateAgent OnAgentUpdate = delegate { }; |
247 | public event AgentRequestSit OnAgentRequestSit = delegate { }; | 252 | public event AgentRequestSit OnAgentRequestSit = delegate { }; |
248 | public event AgentSit OnAgentSit = delegate { }; | 253 | public event AgentSit OnAgentSit = delegate { }; |
@@ -1206,5 +1211,13 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
1206 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) | 1211 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) |
1207 | { | 1212 | { |
1208 | } | 1213 | } |
1214 | |||
1215 | public void SendChangeUserRights(UUID agentID, UUID friendID, int rights) | ||
1216 | { | ||
1217 | } | ||
1218 | |||
1219 | public void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId) | ||
1220 | { | ||
1221 | } | ||
1209 | } | 1222 | } |
1210 | } | 1223 | } |