mirror of
https://github.com/BlackMATov/unity-iso-tools.git
synced 2025-12-15 01:12:05 +07:00
17 lines
349 B
C#
17 lines
349 B
C#
using UnityEngine;
|
|
using IsoTools.Internal;
|
|
using System.Collections.Generic;
|
|
|
|
#if UNITY_EDITOR
|
|
using UnityEditor;
|
|
#endif
|
|
|
|
namespace IsoTools.Tiled {
|
|
[ExecuteInEditMode, DisallowMultipleComponent]
|
|
public class TiledMapTileset : MonoBehaviour {
|
|
|
|
public TiledMapAsset Asset = null;
|
|
public TiledMapProperties Properties = null;
|
|
}
|
|
}
|