workadventure/front/src/Phaser/Game/AddPlayerInterface.ts
2020-07-28 17:45:55 +02:00

9 lines
189 B
TypeScript

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