PkmnLib.NET/PkmnLib.Dynamic/Events/EventData.cs

11 lines
332 B
C#
Raw Normal View History

2024-07-27 14:26:45 +00:00
namespace PkmnLib.Dynamic.Events;
/// <summary>
/// An event is something that happens during a battle. This can be used by front-end code to
/// display information about the battle to the user. This is the only way for the front-end to
/// know what is happening in the battle.
/// </summary>
public interface IEventData
{
}