Assets.Project.ChessEngine.Pieces.King.GetLabel C# (CSharp) Method

GetLabel() public static method

public static GetLabel ( Color color ) : char
color Color
return char
        public new static char GetLabel(Color color)
        {
            if (color == Color.White) return 'K';
            else return 'k';
        }