2024-02-12 09:26:53 +00:00
|
|
|
|
using GameServer.Controllers.Attributes;
|
|
|
|
|
using GameServer.Network;
|
|
|
|
|
using GameServer.Network.Messages;
|
|
|
|
|
using Protocol;
|
|
|
|
|
|
|
|
|
|
namespace GameServer.Controllers;
|
|
|
|
|
internal class TeleportController : Controller
|
|
|
|
|
{
|
|
|
|
|
public TeleportController(PlayerSession session) : base(session)
|
|
|
|
|
{
|
|
|
|
|
// TeleportController.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[NetEvent(MessageId.TeleportFinishRequest)]
|
2024-02-20 19:39:08 +00:00
|
|
|
|
public RpcResult OnTeleportFinishRequest() => Response(MessageId.TeleportFinishResponse, new TeleportFinishResponse());
|
2024-02-15 18:12:14 +00:00
|
|
|
|
|
|
|
|
|
[NetEvent(MessageId.TeleportDataRequest)]
|
2024-02-20 19:39:08 +00:00
|
|
|
|
public RpcResult OnTeleportDataRequest() => Response(MessageId.TeleportDataResponse, new TeleportDataResponse());
|
2024-02-12 09:26:53 +00:00
|
|
|
|
}
|