workadventure/front/src/Phaser/Game/PlayerInterface.ts
David Négrier 46e6917df6 Adding a playersStore
The playerStore can be useful to get the details of a given player from its ID.
2021-07-06 17:13:08 +02:00

10 lines
272 B
TypeScript

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