mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 02:57:12 +08:00
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|