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