summary refs log tree commit diff stats
path: root/GameData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'GameData.cs')
-rw-r--r--GameData.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/GameData.cs b/GameData.cs new file mode 100644 index 0000000..87278ac --- /dev/null +++ b/GameData.cs
@@ -0,0 +1,18 @@
1using System.Collections.Generic;
2
3namespace ManifoldGardenArchipelago
4{
5 public class GameData
6 {
7 public readonly struct ChainListenerReference(string scene_arg, int index_arg)
8 {
9 public readonly string scene = scene_arg;
10 public readonly int index = index_arg;
11 }
12
13 public static readonly Dictionary<string, List<ChainListenerReference>> door_by_item = new()
14 {
15 {"Blue Secret Path", [new ChainListenerReference("World_000_Optimized", 16)] }
16 };
17 }
18}