path manager update

This commit is contained in:
SullyunShin
2025-05-28 10:56:57 +09:00
parent 07fcd25315
commit 1cc72dac38
7 changed files with 65 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
using UnityEngine;
public class SimulationPathNode : MonoBehaviour
{
public SimulationPathNode prevNode;
public SimulationPathNode nextNode;
// 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()
{
}
}