mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
24 lines
439 B
C#
24 lines
439 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline.Tiled
|
|
{
|
|
public class TmxDataTile
|
|
{
|
|
public TmxDataTile()
|
|
{
|
|
}
|
|
|
|
public TmxDataTile(int gid)
|
|
{
|
|
Gid = gid;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Gid.ToString();
|
|
}
|
|
|
|
[XmlAttribute(AttributeName = "gid")]
|
|
public int Gid { get; set; }
|
|
}
|
|
} |