* Core, BizHawkClient: Support launching BizHawkClient via Launcher command line * Revert changes to LauncherComponents.py
		
			
				
	
	
		
			11 lines
		
	
	
		
			187 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			187 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import annotations
 | 
						|
 | 
						|
import sys
 | 
						|
import ModuleUpdate
 | 
						|
ModuleUpdate.update()
 | 
						|
 | 
						|
from worlds._bizhawk.context import launch
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    launch(*sys.argv[1:])
 |