mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
12 lines
276 B
Python
12 lines
276 B
Python
![]() |
from typing import Dict, List, NamedTuple
|
||
|
|
||
|
|
||
|
class Celeste64RegionData(NamedTuple):
|
||
|
connecting_regions: List[str] = []
|
||
|
|
||
|
|
||
|
region_data_table: Dict[str, Celeste64RegionData] = {
|
||
|
"Menu": Celeste64RegionData(["Forsaken City"]),
|
||
|
"Forsaken City": Celeste64RegionData(),
|
||
|
}
|