From 7c1f17b994ca987df2167101054f523cc33d7fb9 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Wed, 16 Apr 2008 14:10:54 +0000 Subject: * Applying melanie's Landmark patch. Thanks Melanie! * To make a landmark, you currently have to enable admin options in the advanced menu first. We're working on this.. however use the admin options solution in the mean time. --- OpenSim/Framework/IClientAPI.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index c0f7fce..75e6fcd 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -260,6 +260,9 @@ namespace OpenSim.Framework public delegate void TeleportLocationRequest( IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags); + public delegate void TeleportLandmarkRequest( + IClientAPI remoteClient, ulong regionHandle, LLVector3 position); + public delegate void DisconnectUser(); public delegate void RequestAvatarProperties(IClientAPI remoteClient, LLUUID avatarID); @@ -458,6 +461,7 @@ namespace OpenSim.Framework event DisconnectUser OnDisconnectUser; event RequestAvatarProperties OnRequestAvatarProperties; event SetAlwaysRun OnSetAlwaysRun; + event TeleportLandmarkRequest OnTeleportLandmarkRequest; event GenericCall4 OnDeRezObject; event Action OnRegionHandShakeReply; event GenericCall2 OnRequestWearables; -- cgit v1.1