10 lines
242 B
C#
10 lines
242 B
C#
using Civilization.Core.Actions;
|
|
|
|
namespace Civilization.Core.Interfaces;
|
|
|
|
public interface IGameAction
|
|
{
|
|
bool CanExecute(GameActionContext context);
|
|
void Execute(GameActionContext context);
|
|
void Undo(GameActionContext context);
|
|
} |