mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

Co-authored-by: chandler05 <66492208+chandler05@users.noreply.github.com> Co-authored-by: Silvris <58583688+Silvris@users.noreply.github.com> Co-authored-by: Zach Parks <zach@alliware.com>
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(),
|
|
}
|