14 lines
158 B
C#
14 lines
158 B
C#
namespace Shogi.Api.Repositories.Dto.SessionState;
|
|
|
|
public enum WhichPiece
|
|
{
|
|
King,
|
|
GoldGeneral,
|
|
SilverGeneral,
|
|
Bishop,
|
|
Rook,
|
|
Knight,
|
|
Lance,
|
|
Pawn
|
|
}
|