9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
import {PointInterface} from "../../Connexion/ConnexionModels";
|
|
|
|
export interface AddPlayerInterface {
|
|
userId: number;
|
|
name: string;
|
|
characterLayers: string[];
|
|
position: PointInterface;
|
|
}
|