added some base types

This commit is contained in:
Tim Wundenberg
2018-05-25 09:31:09 +02:00
parent d8092e8c2d
commit 9781acbe5f
5 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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;}
}
}