Files
pathfinding-visualizer/Pathfinding Visualizer/Assets/Scripts/AStar.cs
T
Simon O'Shea f825ec9c27 slop of code
intermediate push so logan can have access to reset function
2023-08-08 13:10:51 -04:00

21 lines
264 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AStar : MonoBehaviour
{
LogicGrid world;
public void setWorld(LogicGrid world)
{
this.world = world;
}
void Start()
{
}
}