mirror of
https://github.com/opensim/opensim.git
synced 2026-05-17 04:05:40 +08:00
As by default there is no ITeleportModule registered, Teleports by default will still be handled by SceneCommunicationService.
15 lines
434 B
C#
15 lines
434 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenMetaverse;
|
|
using OpenSim.Region.Framework.Scenes;
|
|
|
|
namespace OpenSim.Region.Framework.Interfaces
|
|
{
|
|
public interface ITeleportModule
|
|
{
|
|
void RequestTeleportToLocation(ScenePresence avatar, ulong regionHandle, Vector3 position,
|
|
Vector3 lookAt, uint teleportFlags);
|
|
}
|
|
}
|