12 lines
296 B
C#
12 lines
296 B
C#
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;
|
|
}
|
|
}
|