workadventure/back/src/Model/Movable.ts
2021-06-24 10:09:10 +02:00

9 lines
190 B
TypeScript

import { PositionInterface } from "_Model/PositionInterface";
/**
* A physical object that can be placed into a Zone
*/
export interface Movable {
getPosition(): PositionInterface;
}