10 lines
214 B
C#
10 lines
214 B
C#
namespace PkmnLib.Dynamic.Events;
|
|
|
|
/// <summary>
|
|
/// Event triggered when a turn ends.
|
|
/// </summary>
|
|
public class EndTurnEvent : IEventData
|
|
{
|
|
/// <inheritdoc />
|
|
public EventBatchId BatchId { get; init; }
|
|
} |