 81a239325d
			
		
	
	81a239325d
	
	
	
		
			
			Adds Link's Awakening: DX. Fully imports and forks LADXR, with permission - https://github.com/daid/LADXR
		
			
				
	
	
		
			19 lines
		
	
	
		
			334 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			334 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .itemInfo import ItemInfo
 | |
| 
 | |
| 
 | |
| class KeyLocation(ItemInfo):
 | |
|     OPTIONS = []
 | |
| 
 | |
|     def __init__(self, key):
 | |
|         super().__init__()
 | |
|         self.event = key
 | |
| 
 | |
|     def patch(self, rom, option, *, multiworld=None):
 | |
|         pass
 | |
| 
 | |
|     def read(self, rom):
 | |
|         return self.OPTIONS[0]
 | |
| 
 | |
|     def configure(self, options):
 | |
|         pass
 |