2021-07-07 11:24:51 +02:00
|
|
|
import type { BodyResourceDescriptionInterface } from "../Entity/PlayerTextures";
|
2021-07-06 17:13:08 +02:00
|
|
|
|
|
|
|
export interface PlayerInterface {
|
|
|
|
userId: number;
|
|
|
|
name: string;
|
|
|
|
characterLayers: BodyResourceDescriptionInterface[];
|
2021-07-07 11:24:51 +02:00
|
|
|
visitCardUrl: string | null;
|
|
|
|
companion: string | null;
|
|
|
|
userUuid: string;
|
2021-07-07 18:07:58 +02:00
|
|
|
color?: string;
|
2021-07-06 17:13:08 +02:00
|
|
|
}
|