Files
partey_workadventure/front/src/Phaser/Game/AddPlayerInterface.ts
T
2021-06-08 16:39:22 +02:00

12 lines
374 B
TypeScript

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