added some base types
This commit is contained in:
18
CoopSweeper/GameTypes/IField.cs
Normal file
18
CoopSweeper/GameTypes/IField.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace CoopSweeper.GameTypes
|
||||
{
|
||||
enum FieldState
|
||||
{
|
||||
NONE,
|
||||
REVEALED,
|
||||
QUESTIONMARK,
|
||||
FLAG
|
||||
}
|
||||
|
||||
public interface IField
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user