UNPKG

gamelet-pixui-frame

Version:

pixui开发者框架

25 lines (24 loc) 559 B
import { ECMD } from "../enums/ecmd"; import { IRPC, IRPCRet } from "./irpc"; export interface ICMD { readonly cmd: ECMD; readonly args: any; } export interface ICMDFromGame { readonly cmd: ECMD; readonly toAppID: string; readonly args: string; } export interface ICMDSendMsgToOtherWindow { readonly cmd: ECMD; readonly toWindowID: number; readonly args: string; } export interface ICMDRPC { readonly cmd: ECMD; readonly args: IRPC; } export interface ICMDRPCRet { readonly cmd: ECMD; readonly args: IRPCRet; }