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