Skip to content

Instantly share code, notes, and snippets.

@devmobasa
Created May 7, 2021 04:43
public class GamePiece
{
public PieceColor Color;
public GamePiece() => Color = PieceColor.Blank;
public GamePiece(PieceColor color) => Color = color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment