2025-07-17 15:42:24 +08:00
|
|
|
using System.Xml.Linq;
|
|
|
|
|
|
|
|
namespace Data
|
|
|
|
{
|
|
|
|
public class ImageDef : Define
|
|
|
|
{
|
|
|
|
public string path;
|
|
|
|
public int wCount;
|
|
|
|
public int hCount;
|
|
|
|
public int pixelsPerUnit = 16;
|
2025-09-06 12:25:55 +08:00
|
|
|
public bool flipX = false;
|
|
|
|
public bool flipY = false;
|
2025-07-17 15:42:24 +08:00
|
|
|
|
|
|
|
public override bool Init(XElement xmlDef)
|
|
|
|
{
|
|
|
|
base.Init(xmlDef);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|