Move from the hand.

This commit is contained in:
2023-02-01 22:49:28 -06:00
parent e2eff4f8b5
commit 3bf9aa3ee3
29 changed files with 248 additions and 133 deletions

View File

@@ -0,0 +1,13 @@
using Shogi.Contracts.Types;
namespace Shogi.Contracts.Socket;
public interface ISocketMessage
{
SocketAction Action { get; }
}
public class SocketResponse : ISocketMessage
{
public SocketAction Action { get; set; }
}