12 lines
250 B
C#
12 lines
250 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace BracerLib.Events.Interfaces
|
||
|
|
{
|
||
|
|
public interface IGameEvent
|
||
|
|
{
|
||
|
|
event Action<GameEventArgs> BeforeEvent;
|
||
|
|
event Action<GameEventArgs> DuringEvent;
|
||
|
|
event Action<GameEventArgs> AfterEvent;
|
||
|
|
}
|
||
|
|
}
|