UNPKG

arx-level-generator

Version:
17 lines 449 B
import { ScriptCommand } from '../ScriptCommand.js'; /** * @see https://wiki.arx-libertatis.org/Script:loadanim */ export class LoadAnim extends ScriptCommand { animation; filename; constructor(animation, filename) { super(); this.animation = animation; this.filename = filename; } toString() { return `loadanim ${this.animation} "${this.filename}"`; } } //# sourceMappingURL=LoadAnim.js.map