 db30a0116e
			
		
	
	db30a0116e
	
	
	
		
			
			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(),
 | |
| }
 |