export class CommandBlock {
	
	constructor(variables, commands) {
		this.variables = variables;
		this.commands = commands;
	}
}