Files
MonoGame.Extended/Source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTileContent.cs
T
2017-11-27 20:51:05 +10:00

9 lines
213 B
C#

using System.Xml.Serialization;
namespace MonoGame.Extended.Content.Pipeline.Tiled
{
public struct TiledMapTileContent
{
[XmlAttribute(AttributeName = "gid")] public uint GlobalIdentifier;
}
}