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