workadventure/front/src/Phaser/Game/AddPlayerInterface.ts
2021-07-23 16:41:38 +02:00

7 lines
224 B
TypeScript

import type { PointInterface } from "../../Connexion/ConnexionModels";
import type { PlayerInterface } from "./PlayerInterface";
export interface AddPlayerInterface extends PlayerInterface {
position: PointInterface;
}