2020-04-04 16:25:03 +02:00
|
|
|
import {PointInterface} from "./PointInterface";
|
|
|
|
|
|
|
|
export class Point implements PointInterface{
|
2020-05-16 15:44:40 +02:00
|
|
|
constructor(public x : number, public y : number, public direction : string = "none") {
|
2020-04-04 16:25:03 +02:00
|
|
|
}
|
|
|
|
}
|
2020-04-04 12:42:02 +02:00
|
|
|
|
2020-05-16 15:44:40 +02:00
|
|
|
export class MessageUserPosition {
|
|
|
|
constructor(public userId: string, public name: string, public character: string, public position: PointInterface) {
|
2020-04-04 12:42:02 +02:00
|
|
|
}
|
2020-04-28 22:31:54 +02:00
|
|
|
}
|