2020-04-04 13:40:23 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
/// interface defining the capabilities of a custom event registration
|
2020-04-04 13:40:23 -04:00
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IRegisterEvent
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
/// collection of custom event registrations
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// (Subtype, trigger value, event generator)
|
|
|
|
|
/// </remarks>
|
2020-04-04 13:40:23 -04:00
|
|
|
|
/// </summary>
|
|
|
|
|
IEnumerable<(string, string, Func<string, IEventParserConfiguration, GameEvent, GameEvent>)> Events { get; }
|
|
|
|
|
}
|
2022-01-26 11:32:16 -05:00
|
|
|
|
}
|