mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Clique: Refactors and Additional Features supported by v1.5 (#1989)
This commit is contained in:
11
worlds/clique/Regions.py
Normal file
11
worlds/clique/Regions.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from typing import Dict, List, NamedTuple
|
||||
|
||||
|
||||
class CliqueRegionData(NamedTuple):
|
||||
connecting_regions: List[str] = []
|
||||
|
||||
|
||||
region_data_table: Dict[str, CliqueRegionData] = {
|
||||
"Menu": CliqueRegionData(["The Button Realm"]),
|
||||
"The Button Realm": CliqueRegionData(),
|
||||
}
|
Reference in New Issue
Block a user