server-master/srcs/WingsAPI.Game/Configurations/QuestTeleportDialogConfiguration.cs
2026-02-10 18:21:30 +01:00

16 lines
No EOL
399 B
C#

using System.Collections.Generic;
namespace WingsEmu.Game.Configurations;
public class QuestTeleportDialogConfiguration : List<QuestTeleportDialogInfo>
{
}
public class QuestTeleportDialogInfo
{
public int RunId { get; set; }
public int MapId { get; set; }
public bool AskForTeleport { get; set; }
public short PositionX { get; set; }
public short PositionY { get; set; }
}