initialize repo
This commit is contained in:
15
Lib/Civilization.Core/Actions/ExecutedAction.cs
Normal file
15
Lib/Civilization.Core/Actions/ExecutedAction.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Civilization.Core.Interfaces;
|
||||
|
||||
namespace Civilization.Core.Actions;
|
||||
|
||||
public class ExecutedAction
|
||||
{
|
||||
public IGameAction Action { get; }
|
||||
public GameActionContext ContextSnapshot { get; }
|
||||
|
||||
public ExecutedAction(IGameAction action, GameActionContext snapshot)
|
||||
{
|
||||
Action = action;
|
||||
ContextSnapshot = snapshot;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user