workadventure/pusher/src/Model/Websocket/Point.ts

11 lines
261 B
TypeScript
Raw Normal View History

2021-06-24 10:09:10 +02:00
import { PointInterface } from "./PointInterface";
2021-06-24 10:09:10 +02:00
export class Point implements PointInterface {
constructor(
public x: number,
public y: number,
public direction: string = "none",
public moving: boolean = false
) {}
}