Aktuelle Version der DefaultGui

This commit is contained in:
2014-04-01 11:07:06 +02:00
parent a7a6c36aa8
commit 4a2a01853a
10 changed files with 631 additions and 587 deletions

20
DefaultGui/ITile.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Frontend
{
/// <summary>
/// Interface that should be implemented by your class that represents one field in the grid.
/// It has to provide methods to check for its properties, which are independed from the way you actually store those properties.
/// </summary>
public interface ITile : IPositionable
{
bool isWalkable();
bool isForest();
bool isHuntable();
bool isWater();
}
}