summaryrefslogtreecommitdiff
path: root/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/ExampleScenes/Scenes/OldExamples/Example18_RTS/RTSBuildingButton.cs
blob: e6df7aaa5c924b1ab4aca2dada841905810e9933 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
	}
}