ZoFo/ZoFo/GameCore/GameManagers/MapManager/MapElements/TileSetInfo.cs
2024-08-15 21:47:35 +03:00

14 lines
310 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZoFo.GameCore.GameManagers.MapManager.MapElements
{
public class TileSetInfo
{
public int FirstGid { get; set; }
public string Source { get; set; }
}
}