46e6917df6
The playerStore can be useful to get the details of a given player from its ID.
7 lines
220 B
TypeScript
7 lines
220 B
TypeScript
import type {PointInterface} from "../../Connexion/ConnexionModels";
|
|
import type {PlayerInterface} from "./PlayerInterface";
|
|
|
|
export interface AddPlayerInterface extends PlayerInterface {
|
|
position: PointInterface;
|
|
}
|