13 lines
No EOL
282 B
C#
13 lines
No EOL
282 B
C#
using WingsEmu.Game.GameEvent;
|
|
|
|
namespace WingsEmu.Plugins.GameEvents.Event.Global
|
|
{
|
|
public class GameEventPrepareEvent : GameEvent
|
|
{
|
|
public GameEventPrepareEvent(GameEventType type) : base(type)
|
|
{
|
|
}
|
|
|
|
public bool NoDelay { get; set; }
|
|
}
|
|
} |