2020-05-24 23:14:12 +02:00
|
|
|
import {PointInterface} from "../../Connection";
|
2020-05-19 19:11:12 +02:00
|
|
|
|
|
|
|
export interface AddPlayerInterface {
|
2020-09-18 13:57:38 +02:00
|
|
|
userId: number;
|
2020-05-19 19:11:12 +02:00
|
|
|
name: string;
|
2020-07-28 17:43:33 +02:00
|
|
|
characterLayers: string[];
|
2020-05-19 19:11:12 +02:00
|
|
|
position: PointInterface;
|
|
|
|
}
|