Created
May 7, 2021 04:43
https://codingblast.com/connect4-live-game-signalr-blazor/ - SignalR Connect4 Blazor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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