workadventure/front/src/Phaser/Game/AddPlayerInterface.ts
David Négrier 46e6917df6 Adding a playersStore
The playerStore can be useful to get the details of a given player from its ID.
2021-07-06 17:13:08 +02:00

7 lines
220 B
TypeScript

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