omelop-gen-route
Version:
解析 ts 的interface 到 omelox-protobuf用的 json格式。
17 lines • 387 B
text/typescript
import { GAME_ID, SCENE_ID, ROOM_ID } from '../../../../resources/chess_game/VO/constsVO';
/**
* 进入游戏请求包
*/
export interface chess_clientHandler_c_enterScene_Req {
/** 游戏id */
gameId: GAME_ID;
/** 场景id */
sceneId: SCENE_ID;
/** 房间id */
roomId?: ROOM_ID;
/**
* 选项定制
* @TJS-type message
*/
options?: any;
}