Created some folders.
This commit is contained in:
juliuse98
2021-09-27 11:22:46 +02:00
parent ed0c5cece6
commit be3906af4d
8 changed files with 349 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PathNode
{
private Vector3 position;
public Vector2 index;
private float score;
public PathNode(Vector3 Pos, float Score) {
position = Pos;
score = Score;
}
public Vector3 Position { get => position; set => position = value; }
}