Ajout d'une correction possible
This commit is contained in:
17
Correction/MiniJeuxFinal/Games/IPlayer.cs
Normal file
17
Correction/MiniJeuxFinal/Games/IPlayer.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace MiniJeuxFinal.Games
|
||||
{
|
||||
internal interface IPlayer
|
||||
{
|
||||
string Name { get; }
|
||||
|
||||
int Score { get; }
|
||||
|
||||
|
||||
|
||||
void AddAction(params IAction[] action);
|
||||
|
||||
IAction Play();
|
||||
|
||||
void IncrementScore();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user