Files
minesweeper-coop/CoopSweeper/GameTypes/IField.cs
Tim Wundenberg a03813e2c2 updated Field
2018-05-25 10:09:32 +02:00

25 lines
359 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CoopSweeper.GameTypes
{
public enum FieldState
{
NONE,
REVEALED,
QUESTIONMARK,
FLAG
}
public interface IField
{
bool ContainsBomb { get; set; }
FieldState State { get; set; }
char ToChar();
}
}