10 lines
305 B
TypeScript
10 lines
305 B
TypeScript
import {PointInterface} from "../../Connexion/ConnexionModels";
|
|
import {BodyResourceDescriptionInterface} from "../Entity/PlayerTextures";
|
|
|
|
export interface AddPlayerInterface {
|
|
userId: number;
|
|
name: string;
|
|
characterLayers: BodyResourceDescriptionInterface[];
|
|
position: PointInterface;
|
|
}
|