19 lines
247 B
C#
19 lines
247 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CoopSweeper.GameTypes
|
|
{
|
|
enum FieldState
|
|
{
|
|
NONE,
|
|
REVEALED,
|
|
QUESTIONMARK,
|
|
FLAG
|
|
}
|
|
|
|
public interface IField
|
|
{
|
|
}
|
|
}
|