fix quest bug checking wrong conditions

This commit is contained in:
2026-04-11 22:04:39 -05:00
parent 54db4e4b73
commit 77625e7ad5
5 changed files with 103 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
using UnityEngine;
// Gives a location to be teleported to and displayed on a map. This will be used by
// the game manager to allow for fast travel
[System.Serializable]
public class MapPoint
{
public string Scene;
public Vector3 SpawnPosition;
}