18 lines
339 B
C#
18 lines
339 B
C#
using System.Xml.Linq;
|
|
|
|
namespace Data
|
|
{
|
|
public class ImageDef : Define
|
|
{
|
|
public string path;
|
|
public int wCount;
|
|
public int hCount;
|
|
public int pixelsPerUnit = 16;
|
|
|
|
public override bool Init(XElement xmlDef)
|
|
{
|
|
base.Init(xmlDef);
|
|
return false;
|
|
}
|
|
}
|
|
} |