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

10 lines
272 B
TypeScript
Raw Normal View History

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