Free cookie consent management tool by TermsFeed Policy Generator

source: branches/SimulationCore/HeuristicLab.SimulationCore/3.3/DiscreteEvent/Interfaces/IAction.cs @ 10454

Last change on this file since 10454 was 10454, checked in by abeham, 11 years ago

#1610: updated core, implemented card game sample

File size: 244 bytes
Line 
1using HeuristicLab.Common;
2
3namespace HeuristicLab.SimulationCore {
4  public interface IAction<TModel> : IDeepCloneable, IContent where TModel : IModel {
5    IActivity<TModel> Mandate { get; }
6
7    void Execute(TModel model);
8  }
9}
Note: See TracBrowser for help on using the repository browser.