workadventure/front/src/Phaser/Game/PlayerInterface.ts
2021-12-23 10:22:19 +01:00

13 lines
347 B
TypeScript

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