f825ec9c27
intermediate push so logan can have access to reset function
21 lines
264 B
C#
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()
|
|
{
|
|
|
|
}
|
|
|
|
}
|