mirror of
https://github.com/AIR-EISTI/hades.git
synced 2025-01-10 11:31:30 +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;
|
|
}
|