(client) chore:测试瓦片地图

This commit is contained in:
m0_75251201
2025-07-15 13:58:03 +08:00
parent 27cf9d2f41
commit 370f31990a
2 changed files with 25 additions and 8 deletions

View File

@ -8,7 +8,15 @@ namespace Data
{
public class TileDef : Define
{
public string texturePath = "";
public string name = "";
public override bool Init(XElement xmlDef)
{
base.Init(xmlDef);
name = defName;
return false;
}
}
public class TileMappingTableDef : Define
@ -37,4 +45,6 @@ namespace Data
return true;
}
}
}