diff options
Diffstat (limited to 'OpenSim/Client/Sirikata/ClientStack')
-rw-r--r-- | OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs index c1e281a..e36b797 100644 --- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs +++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | |||
@@ -253,6 +253,7 @@ namespace OpenSim.Client.Sirikata.ClientStack | |||
253 | public event AddNewPrim OnAddPrim; | 253 | public event AddNewPrim OnAddPrim; |
254 | public event FetchInventory OnAgentDataUpdateRequest; | 254 | public event FetchInventory OnAgentDataUpdateRequest; |
255 | public event TeleportLocationRequest OnSetStartLocationRequest; | 255 | public event TeleportLocationRequest OnSetStartLocationRequest; |
256 | public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | ||
256 | public event RequestGodlikePowers OnRequestGodlikePowers; | 257 | public event RequestGodlikePowers OnRequestGodlikePowers; |
257 | public event GodKickUser OnGodKickUser; | 258 | public event GodKickUser OnGodKickUser; |
258 | public event ObjectDuplicate OnObjectDuplicate; | 259 | public event ObjectDuplicate OnObjectDuplicate; |
@@ -439,6 +440,10 @@ namespace OpenSim.Client.Sirikata.ClientStack | |||
439 | throw new System.NotImplementedException(); | 440 | throw new System.NotImplementedException(); |
440 | } | 441 | } |
441 | 442 | ||
443 | public void ProcessPendingPackets() | ||
444 | { | ||
445 | } | ||
446 | |||
442 | public void ProcessInPacket(Packet NewPack) | 447 | public void ProcessInPacket(Packet NewPack) |
443 | { | 448 | { |
444 | throw new System.NotImplementedException(); | 449 | throw new System.NotImplementedException(); |
@@ -446,6 +451,11 @@ namespace OpenSim.Client.Sirikata.ClientStack | |||
446 | 451 | ||
447 | public void Close() | 452 | public void Close() |
448 | { | 453 | { |
454 | Close(true); | ||
455 | } | ||
456 | |||
457 | public void Close(bool sendStop) | ||
458 | { | ||
449 | throw new System.NotImplementedException(); | 459 | throw new System.NotImplementedException(); |
450 | } | 460 | } |
451 | 461 | ||