13 lines
230 B
C#
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;
|
|
}
|
|
}
|
|
}
|