12 lines
306 B
C#
12 lines
306 B
C#
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
|
|
{
|
|
}
|