mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
69cf1eaa9c
adds a bunch of documentation useful for those unfamiliar with the core library
10 lines
200 B
C#
10 lines
200 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Interface that exposes a Moveset for the object.
|
|
/// </summary>
|
|
internal interface IMoveset
|
|
{
|
|
int[] Moves { get; set; }
|
|
}
|
|
}
|