mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
9 lines
210 B
C#
9 lines
210 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MonoGame.Extended.Tiled.Serialization
|
|
{
|
|
public struct TiledMapTileContent
|
|
{
|
|
[XmlAttribute(AttributeName = "gid")] public uint GlobalIdentifier;
|
|
}
|
|
} |