Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created May 7, 2021 04:43
Show Gist options
  • Save Ibro/377ca4b7e83b54e1367c5c305fb7884f to your computer and use it in GitHub Desktop.
Save Ibro/377ca4b7e83b54e1367c5c305fb7884f to your computer and use it in GitHub Desktop.
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