mirror of
https://github.com/jie65535/ChineseChess.git
synced 2024-07-27 18:55:00 +08:00
12 lines
193 B
C#
12 lines
193 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace ChineseChess.GUI.Contracts.Activation
|
|
{
|
|
public interface IActivationHandler
|
|
{
|
|
bool CanHandle();
|
|
|
|
Task HandleAsync();
|
|
}
|
|
}
|