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

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Frontend
{
/// <summary>
/// Interface your positionable objects should implement. Such as the dragons and players.
/// This enables the frontend to determine the current position of said objects to render them at the correct space.
/// </summary>
public interface IPositionable
{
/// <summary>
/// Getter for the x-position
/// </summary>
/// <returns>the x-position</returns>
int getXPosition();
/// <summary>
/// Getter for the y-position
/// </summary>
/// <returns>the y-position</returns>
int getYPosition();
}
}