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