Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com> Reviewed-on: Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite#55
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;
|
|
}
|
|
}
|
|
} |