This commit is contained in:
Meizar 2025-07-30 21:59:04 +07:00
parent a00b0c1d41
commit e2702c00ee
4 changed files with 8 additions and 117 deletions

View file

@ -2,12 +2,11 @@
internal record Coordinate
{
private static readonly string BasePath = Environment.GetEnvironmentVariable("ASSET_PATH_RO") ?? "";
public string Name { get; }
public int Row { get; }
public int Col { get; }
public string Path => PATH + Name + ".png";
private const string PATH = "D:/tiles1705/";
public string Path => BasePath + Name + ".png";
public Coordinate(string name)
{