game_example_def.proto 372 B

12345678910111213141516
  1. package game_example_protocols;
  2. enum e_server_msg_type {
  3. //客户端到服务端
  4. e_mst_start_c2l = 10000;
  5. e_mst_c2l_game_play = 10001;//游戏开始
  6. // 服务端到客户端---------------------------------------------------------------------------
  7. e_mst_start_l2c = 15000;
  8. e_mst_l2c_game_play_result = 15001;//游戏返回
  9. e_mst_clend_index = 20000;
  10. }