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

9 lines
189 B
TypeScript

import {PointInterface} from "../../Connection";
export interface AddPlayerInterface {
userId: number;
name: string;
characterLayers: string[];
position: PointInterface;
}