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

9 lines
204 B
TypeScript
Raw Normal View History

2020-09-28 15:02:37 +02:00
import {PointInterface} from "../../Connexion/ConnexionModels";
export interface AddPlayerInterface {
userId: number;
name: string;
characterLayers: string[];
position: PointInterface;
}