10 lines
272 B
TypeScript
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;
|
||
|
}
|