mirror of
				https://github.com/tobspr/shapez.io.git
				synced 2025-06-13 13:04:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			274 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			274 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { BaseHUDPart } from "../base_hud_part";
 | |
| import { makeDiv } from "../../../core/utils";
 | |
| 
 | |
| export class HUDVignetteOverlay extends BaseHUDPart {
 | |
|     createElements(parent) {
 | |
|         this.element = makeDiv(parent, "ingame_VignetteOverlay");
 | |
|     }
 | |
| 
 | |
|     initialize() {}
 | |
| }
 |