Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Commit

Permalink
Added Tile
Browse files Browse the repository at this point in the history
  • Loading branch information
craftersmine committed Mar 18, 2019
1 parent 5cc6f5e commit e815188
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions craftersmine.EtherEngine.Core/Objects/Tile.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
namespace craftersmine.EtherEngine.Core
{
public class Tile : GameObject
{
public int TilesetX { get; set; }
public int TilesetY { get; set; }
public string TileId { get; set; }

public Tile(int tilesetX, int tilesetY)
{
TilesetX = tilesetX;
TilesetY = tilesetY;
}
}
}

0 comments on commit e815188

Please sign in to comment.