9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
|
import {PointInterface} from "../../Connexion";
|
||
|
|
||
|
export interface AddPlayerInterface {
|
||
|
userId: string;
|
||
|
name: string;
|
||
|
character: string;
|
||
|
position: PointInterface;
|
||
|
}
|