workadventure/back/src/Model/Websocket/MessageUserPosition.ts
2020-12-04 17:26:12 +01:00

8 lines
230 B
TypeScript

import {PointInterface} from "./PointInterface";
export class Point implements PointInterface{
constructor(public x : number, public y : number, public direction : string = "none", public moving : boolean = false) {
}
}