summary refs log tree commit diff stats
path: root/SlotSave.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SlotSave.cs')
-rw-r--r--SlotSave.cs16
1 files changed, 6 insertions, 10 deletions
diff --git a/SlotSave.cs b/SlotSave.cs index 6261890..dfa18bc 100644 --- a/SlotSave.cs +++ b/SlotSave.cs
@@ -1,18 +1,14 @@
1using System; 1using System.Collections.Generic;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6 2
7namespace ManifoldGardenArchipelago 3namespace ManifoldGardenArchipelago
8{ 4{
9 public class SlotSave 5 public class SlotSave
10 { 6 {
11 public readonly HashSet<string> VisitedScenes = []; 7 public readonly HashSet<string> VisitedScenes = [];
12 public readonly HashSet<SceneItemReference> ActivatedButtons = []; 8 public readonly Dictionary<SceneItemReference, bool> ActivatedButtons = [];
13 public readonly HashSet<SceneItemReference> ActivatedSockets = []; 9 public readonly Dictionary<SceneItemReference, bool> ActivatedSockets = [];
14 public readonly HashSet<SceneItemReference> ActivatedPads = []; 10 public readonly Dictionary<SceneItemReference, bool> ActivatedPads = [];
15 public readonly HashSet<SceneItemReference> ActivatedWaterwheels = []; 11 public readonly Dictionary<SceneItemReference, bool> ActivatedWaterwheels = [];
16 public readonly HashSet<SceneItemReference> ActivatedSpheres = []; 12 public readonly Dictionary<SceneItemReference, bool> ActivatedSpheres = [];
17 } 13 }
18} 14}