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

12 lines
374 B
TypeScript
Raw Normal View History

import type {PointInterface} from "../../Connexion/ConnexionModels";
import type {BodyResourceDescriptionInterface} from "../Entity/PlayerTextures";
export interface AddPlayerInterface {
userId: number;
name: string;
2020-10-20 16:39:23 +02:00
characterLayers: BodyResourceDescriptionInterface[];
position: PointInterface;
visitCardUrl: string|null;
2021-04-02 21:21:11 +02:00
companion: string|null;
}