2021-05-12 09:13:25 +02:00
|
|
|
import type {PointInterface} from "../../Connexion/ConnexionModels";
|
2021-07-06 17:13:08 +02:00
|
|
|
import type {PlayerInterface} from "./PlayerInterface";
|
2020-05-19 19:11:12 +02:00
|
|
|
|
2021-07-06 17:13:08 +02:00
|
|
|
export interface AddPlayerInterface extends PlayerInterface {
|
2020-05-19 19:11:12 +02:00
|
|
|
position: PointInterface;
|
|
|
|
}
|