Fixed accidentally building the board from player2 perspective.
This commit is contained in:
12
Gameboard.ShogiUI.Sockets/Models/Player.cs
Normal file
12
Gameboard.ShogiUI.Sockets/Models/Player.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Gameboard.ShogiUI.Sockets.Models
|
||||
{
|
||||
public class Player
|
||||
{
|
||||
public string Name { get; }
|
||||
|
||||
public Player(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user