mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
15 lines
405 B
C#
15 lines
405 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MonoGame.Extended.Tiled
|
|
{
|
|
public class TiledMapProperties : Dictionary<string, TiledMapPropertyValue>
|
|
{
|
|
public bool TryGetValue(string key, out string value)
|
|
{
|
|
bool result = TryGetValue(key, out TiledMapPropertyValue tmpVal);
|
|
value = result ? null : tmpVal.Value;
|
|
return result;
|
|
}
|
|
}
|
|
}
|