workadventure/front/src/Phaser/Game/AddPlayerInterface.ts

10 lines
305 B
TypeScript
Raw Normal View History

2020-09-28 15:02:37 +02:00
import {PointInterface} from "../../Connexion/ConnexionModels";
import {BodyResourceDescriptionInterface} from "../Entity/PlayerTextures";
export interface AddPlayerInterface {
userId: number;
name: string;
2020-10-20 16:39:23 +02:00
characterLayers: BodyResourceDescriptionInterface[];
position: PointInterface;
}