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

25 lines
419 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CoopSweeper.GameTypes
{
class Field : IField
{
public Field()
{
State = FieldState.NONE;
}
public bool ContainsBomb { get; set; }
public FieldState State { get; set; }
public char ToChar()
{
throw new NotImplementedException();
}
}
}