CapersProject/Packages/com.arongranberg.astar/ExampleScenes~/Scenes/OldExamples/Example18_RTS/RTSBuildingButton.cs

12 lines
296 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
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;
}
}