mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
0d45075d4b
- Settings now stored as json next to exe - Settings now exposes all legality checking setttings that can be changed - Slot hovering now can play cries in MGDB/PKMDB/etc, not just the main boxes. - Enhanced hover text for mystery gifts and encounters that have movesets - Show recently loaded save files in ctrl-f browser - Toggle auto-load savefile setting to be none/detect-latest/last-loaded - Custom extensions & extra backup paths can now be configured directly in the json settings - Settings editor now uses propertygrid & tabs.
12 lines
241 B
C#
12 lines
241 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Interface that exposes a Moveset for the object.
|
|
/// </summary>
|
|
public interface IMoveset
|
|
{
|
|
IReadOnlyList<int> Moves { get; }
|
|
}
|
|
}
|