mirror of
https://github.com/kwsch/pkNX.git
synced 2026-06-02 22:34:58 -05:00
11 lines
263 B
C#
11 lines
263 B
C#
using System.Linq;
|
|
|
|
namespace pkNX.Structures
|
|
{
|
|
public abstract class EggMoves
|
|
{
|
|
public readonly int[] Moves;
|
|
protected EggMoves(int[] moves) => Moves = moves;
|
|
public bool GetHasEggMove(int move) => Moves.Contains(move);
|
|
}
|
|
} |