forked from Shardstone/trail-into-darkness
11 lines
227 B
C#
11 lines
227 B
C#
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace Nox.Game {
|
|
public class MapLocation : MonoBehaviour {
|
|
public SpriteRenderer icon;
|
|
public SpriteRenderer highlight;
|
|
public TextMeshProUGUI nameText;
|
|
}
|
|
}
|