workadventure/front/src/Phaser/Game/AddPlayerInterface.ts
David Négrier 1fa39b0781 Fixing typos.
Replaced connexion with connection and LogincScene with LoginScene
2020-05-24 23:14:12 +02:00

9 lines
181 B
TypeScript

import {PointInterface} from "../../Connection";
export interface AddPlayerInterface {
userId: string;
name: string;
character: string;
position: PointInterface;
}