Yep
This commit is contained in:
9
Shogi.Domain/ValueObjects/InCheckResult.cs
Normal file
9
Shogi.Domain/ValueObjects/InCheckResult.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Shogi.Domain.ValueObjects;
|
||||
|
||||
[Flags]
|
||||
internal enum InCheckResult
|
||||
{
|
||||
NobodyInCheck = 1, // This kinda doesn't make sense from a Flags perspective, but it works. =/
|
||||
Player1InCheck = 2,
|
||||
Player2InCheck = 4
|
||||
}
|
||||
Reference in New Issue
Block a user