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

namespace ManifoldGardenArchipelago
{
    public class GameData
    {
        public readonly struct ChainListenerReference(string scene_arg, int index_arg)
        {
            public readonly string scene = scene_arg;
            public readonly int index = index_arg;
        }

        public static readonly Dictionary<string, List<ChainListenerReference>> door_by_item = new()
        {
            {"Blue Secret Path", [new ChainListenerReference("World_000_Optimized", 16)] }
        };
    }
}