Files
minesweeper-coop/CoopSweeper/GameTypes/Field.cs
2018-05-25 09:31:09 +02:00

15 lines
238 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CoopSweeper.GameTypes
{
class Field : IField
{
public bool ContainsBomb { get; set; }
public FieldState State { get; set;}
}
}