diff options
Diffstat (limited to 'OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs')
-rw-r--r-- | OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs index d305ffe..56f5f8f 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,7 @@ 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; |
242 | public event UpdateAgent OnAgentUpdate; | 247 | public event UpdateAgent OnAgentUpdate; |
243 | public event AgentRequestSit OnAgentRequestSit; | 248 | public event AgentRequestSit OnAgentRequestSit; |
244 | public event AgentSit OnAgentSit; | 249 | public event AgentSit OnAgentSit; |
@@ -1190,6 +1195,10 @@ namespace OpenSim.Client.Sirikata.ClientStack | |||
1190 | { | 1195 | { |
1191 | } | 1196 | } |
1192 | 1197 | ||
1198 | public void SendChangeUserRights(UUID agentID, UUID friendID, int rights) | ||
1199 | { | ||
1200 | } | ||
1201 | |||
1193 | #endregion | 1202 | #endregion |
1194 | } | 1203 | } |
1195 | } | 1204 | } |