namespace MiniJeuxFinal.Games.PierrePapierCiseaux.Actions { public class StoneAction : IActionPpc { public string Name => "Pierre"; public bool ToWin(IActionPpc other) { return other is not PaperAction; } } }