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

7 lines
220 B
TypeScript
Raw Normal View History

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