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

16 lines
No EOL
356 B
C#

using System;
using WingsEmu.Game.GameEvent.Configuration;
using WingsEmu.Game.Maps;
namespace WingsEmu.Game.GameEvent;
public interface IGameEventInstance
{
public IGameEventConfiguration Configuration { get; }
public DateTime DestroyDate { get; }
public IMapInstance MapInstance { get; }
public GameEventType GameEventType { get; }
}