PkmnLib.NET/PkmnLib.Dynamic/Models/Choices/FleeChoice.cs

9 lines
159 B
C#
Raw Normal View History

2024-07-27 14:26:45 +00:00
namespace PkmnLib.Dynamic.Models.Choices;
2024-07-28 10:52:17 +00:00
/// <summary>
/// A choice to flee from a battle.
/// </summary>
2024-07-27 14:26:45 +00:00
public interface IFleeChoice : ITurnChoice
{
}