workadventure/front/src/Phaser/Game/AddPlayerInterface.ts
2021-01-08 11:44:41 +01:00

10 lines
305 B
TypeScript

import {PointInterface} from "../../Connexion/ConnexionModels";
import {BodyResourceDescriptionInterface} from "../Entity/PlayerTextures";
export interface AddPlayerInterface {
userId: number;
name: string;
characterLayers: BodyResourceDescriptionInterface[];
position: PointInterface;
}