2025-05-26 12:53:54 +09:00
|
|
|
using UnityEngine;
|
2025-05-28 10:56:57 +09:00
|
|
|
using System.Collections.Generic;
|
2025-05-26 12:53:54 +09:00
|
|
|
public class PathManager : UnitySingleton<PathManager>
|
|
|
|
|
{
|
2025-05-28 10:56:57 +09:00
|
|
|
List<SimulationPathNode> nodes = new List<SimulationPathNode>();
|
2025-05-26 12:53:54 +09:00
|
|
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
|
|
|
|
void Start()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
|
void Update()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-28 10:56:57 +09:00
|
|
|
}
|