mirror of
				https://github.com/tobspr/shapez.io.git
				synced 2025-06-13 13:04:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			290 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			290 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { Component } from "../component";
 | |
| 
 | |
| export class UnremovableComponent extends Component {
 | |
|     static getId() {
 | |
|         return "Unremovable";
 | |
|     }
 | |
| 
 | |
|     static getSchema() {
 | |
|         return {};
 | |
|     }
 | |
| 
 | |
|     duplicateWithoutContents() {
 | |
|         return new UnremovableComponent();
 | |
|     }
 | |
| }
 |