17 lines
391 B
C#
17 lines
391 B
C#
namespace Tiger.Game.Rooms.Mapping.Tiles;
|
|
|
|
public class RoomTile
|
|
{
|
|
public int X { get; set; }
|
|
public int Y { get; set; }
|
|
public double Height { get; set; }
|
|
public RoomTileState TileState { get; set; }
|
|
|
|
public RoomTile(int x, int y, double height, RoomTileState tileState)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
Height = height;
|
|
TileState = tileState;
|
|
}
|
|
} |