mine2d/Mine2d/game/core/data/STile.cs

23 lines
355 B
C#

using Mine2d.game.core.tiles;
namespace Mine2d.game.core.data;
public struct STile
{
public int Id { get; set; }
public int Hits { get; set; }
public static STile From(int id)
{
return new STile()
{
Id = id
};
}
public static STile From(Tiles id)
{
return From((int)id);
}
}