2021-05-12 09:13:25 +02:00
|
|
|
import type {PointInterface} from "../../Connexion/ConnexionModels";
|
|
|
|
import type {BodyResourceDescriptionInterface} from "../Entity/PlayerTextures";
|
2020-05-19 19:11:12 +02:00
|
|
|
|
|
|
|
export interface AddPlayerInterface {
|
2020-09-18 13:57:38 +02:00
|
|
|
userId: number;
|
2020-05-19 19:11:12 +02:00
|
|
|
name: string;
|
2020-10-20 16:39:23 +02:00
|
|
|
characterLayers: BodyResourceDescriptionInterface[];
|
2020-05-19 19:11:12 +02:00
|
|
|
position: PointInterface;
|
2021-06-08 16:30:58 +02:00
|
|
|
visitCardUrl: string|null;
|
2021-04-02 21:21:11 +02:00
|
|
|
companion: string|null;
|
2020-05-19 19:11:12 +02:00
|
|
|
}
|