Fixed accidentally building the board from player2 perspective.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
public class Bishop : Piece
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
public class GoldenGeneral : Piece
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
public class King : Piece
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
public class Knight : Piece
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
public class Lance : Piece
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
public class Pawn : Piece
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
[DebuggerDisplay("{WhichPiece} {Owner}")]
|
||||
public abstract class Piece : IPlanarElement
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
public class Rook : Piece
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using PathFinding;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Gameboard.ShogiUI.BoardState.Pieces
|
||||
namespace Gameboard.ShogiUI.Rules.Pieces
|
||||
{
|
||||
public class SilverGeneral : Piece
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user