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

GetIndex() public static method

public static GetIndex ( Color color ) : int
color Color
return int
        public new static int GetIndex(Color color)
        {
            if (color == Color.White) return 6;
            else return 12;
        }
    }