From e58b122fb00a337748df2de2451679f53b092d42 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 22 Feb 2025 10:43:41 -0500 Subject: Mapped out most of the game --- SlotSave.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 SlotSave.cs (limited to 'SlotSave.cs') diff --git a/SlotSave.cs b/SlotSave.cs new file mode 100644 index 0000000..6261890 --- /dev/null +++ b/SlotSave.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ManifoldGardenArchipelago +{ + public class SlotSave + { + public readonly HashSet VisitedScenes = []; + public readonly HashSet ActivatedButtons = []; + public readonly HashSet ActivatedSockets = []; + public readonly HashSet ActivatedPads = []; + public readonly HashSet ActivatedWaterwheels = []; + public readonly HashSet ActivatedSpheres = []; + } +} -- cgit 1.4.1