6 lines
220 B
TypeScript
6 lines
220 B
TypeScript
import type {PointInterface} from "../../Connexion/ConnexionModels";
|
|
import type {PlayerInterface} from "./PlayerInterface";
|
|
|
|
export interface AddPlayerInterface extends PlayerInterface {
|
|
position: PointInterface;
|
|
}
|