CapersProject/Packages/com.arongranberg.astar/ExampleScenes~/Scenes/OldExamples/Example18_RTS/RTSBuildingButton.cs
2024-06-04 03:26:03 +09:00

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;
}
}