|
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();
|
|
}
|
|
}
|