Skip to content
Snippets Groups Projects
Commit 25366951 authored by Elias Leinenweber's avatar Elias Leinenweber
Browse files

Avancé dans la map

parent 33d71af6
Branches
Tags
No related merge requests found
......@@ -47,6 +47,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="model\Player.cs" />
<Compile Include="view\Controls\MapView.Designer.cs" />
<Compile Include="view\FormFin.cs">
<SubType>Form</SubType>
......
namespace Wanderer.model
{
public class Player
{
}
}
\ No newline at end of file
namespace Wanderer
namespace Wanderer.model
{
public enum Terrain
{
Plains,
Hills,
Mountains
Mountains,
Forest,
Lake,
River,
Urban
}
}
\ No newline at end of file
namespace Wanderer
namespace Wanderer.model
{
public class Tile
{
public Terrain Terrain { get; set; }
public Player Owner { get; set; }
}
}
\ No newline at end of file
using System.Drawing;
using System.Windows.Forms;
using Wanderer.model;
namespace Wanderer.view.Controls
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment