expand gamelogic

This commit is contained in:
Tim Wundenberg
2018-05-25 10:34:07 +02:00
parent 0461177708
commit d11258d3ed
2 changed files with 68 additions and 0 deletions

View File

@@ -7,5 +7,13 @@ namespace CoopSweeper.GameTypes
interface IGame
{
IField[][] Map { get; }
void Reveal(int x, int y);
void SetQuestionMark(int x, int y);
void SetFlag(int x, int y);
void ResetField(int x, int y);
}
}