Initial commit

This commit is contained in:
2024-07-20 13:51:52 +02:00
commit 3845f91601
26 changed files with 1822 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace PkmnLib.Static;
public readonly record struct TypeIdentifier
{
private byte Value { get; init; }
public TypeIdentifier(byte value)
{
Value = value;
}
public static implicit operator TypeIdentifier(byte value) => new(value);
public override int GetHashCode() => Value.GetHashCode();
}