workadventure/back/src/Model/Websocket/ExSocketInterface.ts
gparant b65e37c468 Name of map users
- Add name on user
 - Delete NonPlayer class not used
2020-05-03 22:24:14 +02:00

11 lines
267 B
TypeScript

import {Socket} from "socket.io";
import {PointInterface} from "./PointInterface";
export interface ExSocketInterface extends Socket {
token: any;
roomId: string;
webRtcRoomId: string;
userId: string;
name: string;
position: PointInterface;
}