Files
unity-iso-tools/Assets/IsoTools/Tiled/TiledMapTile.cs
2016-02-02 12:32:02 +06:00

16 lines
373 B
C#

using UnityEngine;
using IsoTools.Internal;
using System.Collections.Generic;
#if UNITY_EDITOR
using UnityEditor;
#endif
namespace IsoTools.Tiled {
[ExecuteInEditMode, DisallowMultipleComponent]
public class TiledMapTile : MonoBehaviour {
public TiledMapAsset Asset = null;
public TiledMapProperties Properties = null;
}
} // namespace IsoTools.Tiled