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

12 lines
320 B
TypeScript
Raw Normal View History

2021-07-23 16:41:38 +02:00
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;
}