workadventure/back/src/Model/Movable.ts

9 lines
190 B
TypeScript
Raw Normal View History

2021-06-24 10:09:10 +02:00
import { PositionInterface } from "_Model/PositionInterface";
2020-09-16 16:06:43 +02:00
/**
* A physical object that can be placed into a Zone
*/
export interface Movable {
2021-06-24 10:09:10 +02:00
getPosition(): PositionInterface;
2020-09-16 16:06:43 +02:00
}