Added support for quiet areas
[libreadventure.git] / back / src / Model / Websocket / MessageUserPosition.ts
index ed604940745e00eb351aec173b4659c31d691060..186d5bef70b0b7e3a8ed0dc199c06c20c4db1759 100644 (file)
@@ -1,7 +1,7 @@
 import {PointInterface} from "./PointInterface";
 
 export class Point implements PointInterface{
-    constructor(public x : number, public y : number, public direction : string = "none", public moving : boolean = false) {
+    constructor(public x : number, public y : number, public direction : string = "none", public moving : boolean = false, public silent : boolean = false) {
     }
 }