summary refs log tree commit diff stats
path: root/SlotSave.cs
blob: dfa18bc577402508056c774ee30778c1388db6dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;

namespace ManifoldGardenArchipelago
{
    public class SlotSave
    {
        public readonly HashSet<string> VisitedScenes = [];
        public readonly Dictionary<SceneItemReference, bool> ActivatedButtons = [];
        public readonly Dictionary<SceneItemReference, bool> ActivatedSockets = [];
        public readonly Dictionary<SceneItemReference, bool> ActivatedPads = [];
        public readonly Dictionary<SceneItemReference, bool> ActivatedWaterwheels = [];
        public readonly Dictionary<SceneItemReference, bool> ActivatedSpheres = [];
    }
}