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

9 lines
151 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 use an item
/// </summary>
2024-07-27 14:26:45 +00:00
public interface IItemChoice : ITurnChoice
{
}