mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-24 14:56:50 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
11 lines
235 B
C#
11 lines
235 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);
|
|
}
|