This commit is contained in:
Meizar Rimadana 2025-08-01 08:36:27 +07:00
parent ce95630cc6
commit 73d4c02191
2 changed files with 11 additions and 3 deletions

View file

@ -6,7 +6,15 @@ internal record Coordinate
public string Name { get; }
public int Row { get; }
public int Col { get; }
public string Path => BasePath + Name + ".png";
public string FullPath
{
get
{
string filename = Name + ".png";
return Path.Combine(BasePath, filename);
}
}
public Coordinate(string name)
{