diff options
author | Melanie Thielker | 2008-12-14 05:49:07 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-12-14 05:49:07 +0000 |
commit | 008e1fe8df1862a8a3a8edfaf39d4cd9f57ad52b (patch) | |
tree | 2763623d407e3584e5497c88802f73d663b40abb /OpenSim/Framework | |
parent | Mantis#2725. Thank you kindly, Diva, for a patch that: (diff) | |
download | opensim-SC_OLD-008e1fe8df1862a8a3a8edfaf39d4cd9f57ad52b.zip opensim-SC_OLD-008e1fe8df1862a8a3a8edfaf39d4cd9f57ad52b.tar.gz opensim-SC_OLD-008e1fe8df1862a8a3a8edfaf39d4cd9f57ad52b.tar.bz2 opensim-SC_OLD-008e1fe8df1862a8a3a8edfaf39d4cd9f57ad52b.tar.xz |
Plumb the TP-Sending packets
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 8a3c4b6..751a2a5 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -411,6 +411,9 @@ namespace OpenSim.Framework | |||
411 | 411 | ||
412 | public delegate void SoundTrigger(UUID soundId,UUID ownerid,UUID objid, UUID parentid,float Gain, Vector3 Position,UInt64 Handle); | 412 | public delegate void SoundTrigger(UUID soundId,UUID ownerid,UUID objid, UUID parentid,float Gain, Vector3 Position,UInt64 Handle); |
413 | 413 | ||
414 | public delegate void StartLure(byte lureType, string message, UUID targetID, IClientAPI client); | ||
415 | public delegate void TeleportLureRequest(UUID lureID, uint teleportFlags, IClientAPI client); | ||
416 | |||
414 | #endregion | 417 | #endregion |
415 | 418 | ||
416 | public struct DirPlacesReplyData | 419 | public struct DirPlacesReplyData |
@@ -717,6 +720,9 @@ namespace OpenSim.Framework | |||
717 | event DeclineCallingCard OnDeclineCallingCard; | 720 | event DeclineCallingCard OnDeclineCallingCard; |
718 | event SoundTrigger OnSoundTrigger; | 721 | event SoundTrigger OnSoundTrigger; |
719 | 722 | ||
723 | event StartLure OnStartLure; | ||
724 | event TeleportLureRequest OnTeleportLureRequest; | ||
725 | |||
720 | // void ActivateGesture(UUID assetId, UUID gestureId); | 726 | // void ActivateGesture(UUID assetId, UUID gestureId); |
721 | 727 | ||
722 | /// <summary> | 728 | /// <summary> |