Files
DecouverteDev/Correction/MiniJeuxFinal/Games/PierrePapierCiseaux/Actions/PaperAction.cs
2025-12-12 09:10:08 +01:00

13 lines
230 B
C#

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