12 lines
374 B
TypeScript
12 lines
374 B
TypeScript
import type {PointInterface} from "../../Connexion/ConnexionModels";
|
|
import type {BodyResourceDescriptionInterface} from "../Entity/PlayerTextures";
|
|
|
|
export interface AddPlayerInterface {
|
|
userId: number;
|
|
name: string;
|
|
characterLayers: BodyResourceDescriptionInterface[];
|
|
position: PointInterface;
|
|
visitCardUrl: string|null;
|
|
companion: string|null;
|
|
}
|