import { IPlayer, IRoom } from "./Model" import { IClientInput, IState } from "./State" export interface IMsgPlayerList { list: Array } export interface IMsgRoomList { list: Array } export interface IMsgRoom { room: IRoom } export interface IMsgGameStart { state: IState } export interface IMsgGameStart { state: IState } export interface IMsgClientSync { input: IClientInput } export interface IMsgServerSync { inputs: Array }