slop of code

intermediate push so logan can have access to reset function
This commit is contained in:
Simon O'Shea
2023-08-08 13:10:51 -04:00
parent 219d21173e
commit f825ec9c27
9 changed files with 1039 additions and 8 deletions
@@ -0,0 +1,20 @@
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()
{
}
}