14 lines
332 B
C#
14 lines
332 B
C#
|
namespace R0bbie.Timeline.Events
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Interface to create custom event listeners inside another classes
|
||
|
/// </summary>
|
||
|
public interface IGameEventListener
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Action to do when the event is raised
|
||
|
/// </summary>
|
||
|
public void OnEventRaised();
|
||
|
}
|
||
|
}
|