decla-red/frontend/src/scripts/commands/teleport-to.ts
schmelczerandras c21025caf6 Remove clutter
2020-10-03 09:17:43 +02:00

12 lines
263 B
TypeScript

import { vec2 } from 'gl-matrix';
import { Command } from './command';
export class TeleportToCommand extends Command {
public constructor(public readonly position?: vec2) {
super();
}
public get type(): string {
return 'TeleportToCommand';
}
}