11 lines
261 B
C#
11 lines
261 B
C#
|
|
using Chessistics.Engine.Events;
|
||
|
|
using Chessistics.Engine.Model;
|
||
|
|
|
||
|
|
namespace Chessistics.Engine.Commands;
|
||
|
|
|
||
|
|
public interface IWorldCommand
|
||
|
|
{
|
||
|
|
void Apply(BoardState state, List<IWorldEvent> changeList);
|
||
|
|
void AssertApplicationConditions(BoardState state);
|
||
|
|
}
|