25 lines
419 B
C#
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();
|
|
}
|
|
}
|
|
}
|