update to unity 6.2, add save system and quest system

This commit is contained in:
2025-12-02 16:52:02 -06:00
parent aea12ab091
commit c7dca2f8e5
23 changed files with 767 additions and 48 deletions
+10
View File
@@ -0,0 +1,10 @@
using UnityEngine;
[System.Serializable]
public class Storybools
{
// not sure how we'll organize this yet, but right now lets do it by quest
#region QID1
public bool hasHelpedSam = false;
#endregion
}