Queem.Core.ChessBoard.PlayerBoard.PlayerBoard C# (CSharp) Method

PlayerBoard() public method

public PlayerBoard ( PlayerPosition playerPosition, System.Color playerColor, MovesArrayAllocator arrayAllocator ) : System
playerPosition PlayerPosition
playerColor System.Color
arrayAllocator MovesArrayAllocator
return System
        public PlayerBoard(PlayerPosition playerPosition, Color playerColor, MovesArrayAllocator arrayAllocator)
        {
            this.position = playerPosition;
            this.color = playerColor;
            this.allocator = arrayAllocator;

            this.ResetAll();
        }