mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
18 lines
421 B
C#
18 lines
421 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline.Tiled
|
|
{
|
|
public class TiledMapPropertyContent
|
|
{
|
|
[XmlAttribute(AttributeName = "name")]
|
|
public string Name { get; set; }
|
|
|
|
[XmlAttribute(AttributeName = "value")]
|
|
public string Value { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{Name}: {Value}";
|
|
}
|
|
}
|
|
} |