23 lines
339 B
TypeScript
23 lines
339 B
TypeScript
|
import { IPlayer, IRoom } from "./Model"
|
||
|
import { IState } from "./State"
|
||
|
|
||
|
export interface IMsgPlayerList {
|
||
|
list: Array<IPlayer>
|
||
|
}
|
||
|
|
||
|
export interface IMsgRoomList {
|
||
|
list: Array<IRoom>
|
||
|
}
|
||
|
|
||
|
export interface IMsgRoom {
|
||
|
room: IRoom
|
||
|
}
|
||
|
|
||
|
export interface IMsgGameStart {
|
||
|
state: IState
|
||
|
}
|
||
|
|
||
|
|
||
|
export interface IMsgGameStart {
|
||
|
state: IState
|
||
|
}
|