mirror of
				https://github.com/AIR-EISTI/hades.git
				synced 2025-10-31 12:48:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export class Variable {
 | |
|     name: string;
 | |
|     label: string;
 | |
|     default: string;
 | |
| }
 | |
| 
 | |
| export class Game {
 | |
|     name: string;
 | |
|     vars: Array<Variable>;
 | |
|     command?: Array<string>;
 | |
| }
 | |
| 
 | |
| export class GameList {
 | |
|   [name: string]: Game;
 | |
| }
 |