diff options
Diffstat (limited to 'OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs')
-rw-r--r-- | OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs index 1bdc4f8..b199b93 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; |
@@ -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 | } |