17
Shogi.Domain/BoardTile.cs
Normal file
17
Shogi.Domain/BoardTile.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Shogi.Domain.Pieces;
|
||||
|
||||
namespace Shogi.Domain
|
||||
{
|
||||
internal class BoardTile
|
||||
{
|
||||
public BoardTile(Piece piece, Vector2 position)
|
||||
{
|
||||
Piece = piece;
|
||||
Position = position;
|
||||
}
|
||||
|
||||
public Piece Piece { get; }
|
||||
|
||||
public Vector2 Position { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user