13 lines
385 B
C#
13 lines
385 B
C#
namespace LittleTown.Core.Actions;
|
|
|
|
/// <summary>
|
|
/// Interface qui représente ce que doivent implémenter les actions
|
|
/// </summary>
|
|
public interface IAction
|
|
{
|
|
/// <summary>
|
|
/// Methode demandant a l'action d'appliquer ses changement au match
|
|
/// </summary>
|
|
/// <param name="match">le match a modifier avec cette action</param>
|
|
public void Execute(Match match);
|
|
} |