server-master/srcs/WingsAPI.Game/GameEvent/Configuration/IGameEventConfiguration.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
255 B
C#

using WingsEmu.Game.Maps;
namespace WingsEmu.Game.GameEvent.Configuration;
public interface IGameEventConfiguration
{
public GameEventType GameEventType { get; }
public short MapId { get; }
public MapInstanceType MapInstanceType { get; }
}