10 lines
343 B
TypeScript
10 lines
343 B
TypeScript
|
/// <reference types="node" />
|
||
|
import { Command } from "../Editor/CommandMachine";
|
||
|
import { Vector3, Object3D } from "three";
|
||
|
export declare class Command_ExplosionMap implements Command {
|
||
|
timer: NodeJS.Timeout;
|
||
|
moveObjs: [Object3D, Vector3][];
|
||
|
count: number;
|
||
|
exec(): Promise<void>;
|
||
|
}
|
||
|
//# sourceMappingURL=ExplosionMap.d.ts.map
|