12 lines
No EOL
255 B
C#
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; }
|
|
} |