Files

18 lines
339 B
C#
Raw Permalink Normal View History

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;
}
}
}