yarp
This commit is contained in:
11
Shogi.Domain/Other/PieceRulesRegistration.cs
Normal file
11
Shogi.Domain/Other/PieceRulesRegistration.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Shogi.Domain.YetToBeAssimilatedIntoDDD.Pathing;
|
||||
|
||||
namespace Shogi.Domain.Other;
|
||||
|
||||
public record PieceRulesRegistration<TPiece>(TPiece WhichPiece, ICollection<Path> MoveSet) where TPiece : Enum
|
||||
{
|
||||
}
|
||||
|
||||
public record PieceInPlay<TPiece>(TPiece WhichPiece, int OwningPlayerNumber) where TPiece : Enum
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user