using UnityEngine; using UnityEngine.UI; using System.Collections; namespace Pathfinding.Examples.RTS { [HelpURL("https://arongranberg.com/astar/documentation/stable/rtsbuildingbutton.html")] public class RTSBuildingButton : MonoBehaviour { public GameObject prefab; public int cost; } }