workadventure/front/src/Phaser/Game/AddPlayerInterface.ts

9 lines
199 B
TypeScript
Raw Normal View History

2020-09-25 18:29:22 +02:00
import {PointInterface} from "../../Connexion/Connection";
export interface AddPlayerInterface {
userId: number;
name: string;
characterLayers: string[];
position: PointInterface;
}