You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

MessageType.pb.h 19 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: MessageType.proto
  3. #ifndef GOOGLE_PROTOBUF_INCLUDED_MessageType_2eproto
  4. #define GOOGLE_PROTOBUF_INCLUDED_MessageType_2eproto
  5. #include <limits>
  6. #include <string>
  7. #include <google/protobuf/port_def.inc>
  8. #if PROTOBUF_VERSION < 3021000
  9. #error This file was generated by a newer version of protoc which is
  10. #error incompatible with your Protocol Buffer headers. Please update
  11. #error your headers.
  12. #endif
  13. #if 3021009 < PROTOBUF_MIN_PROTOC_VERSION
  14. #error This file was generated by an older version of protoc which is
  15. #error incompatible with your Protocol Buffer headers. Please
  16. #error regenerate this file with a newer version of protoc.
  17. #endif
  18. #include <google/protobuf/port_undef.inc>
  19. #include <google/protobuf/io/coded_stream.h>
  20. #include <google/protobuf/arena.h>
  21. #include <google/protobuf/arenastring.h>
  22. #include <google/protobuf/generated_message_util.h>
  23. #include <google/protobuf/metadata_lite.h>
  24. #include <google/protobuf/generated_message_reflection.h>
  25. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  26. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  27. #include <google/protobuf/generated_enum_reflection.h>
  28. // @@protoc_insertion_point(includes)
  29. #include <google/protobuf/port_def.inc>
  30. #define PROTOBUF_INTERNAL_EXPORT_MessageType_2eproto
  31. PROTOBUF_NAMESPACE_OPEN
  32. namespace internal
  33. {
  34. class AnyMetadata;
  35. } // namespace internal
  36. PROTOBUF_NAMESPACE_CLOSE
  37. // Internal implementation detail -- do not use these members.
  38. struct TableStruct_MessageType_2eproto
  39. {
  40. static const uint32_t offsets[];
  41. };
  42. extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_MessageType_2eproto;
  43. PROTOBUF_NAMESPACE_OPEN
  44. PROTOBUF_NAMESPACE_CLOSE
  45. namespace protobuf
  46. {
  47. enum BulletType : int
  48. {
  49. NULL_BULLET_TYPE = 0,
  50. LINE_BULLET = 1,
  51. COMMON_BULLET = 2,
  52. FAST_BULLET = 3,
  53. ORDINARY_BULLET = 4,
  54. ATOM_BOMB = 5,
  55. BulletType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  56. BulletType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  57. };
  58. bool BulletType_IsValid(int value);
  59. constexpr BulletType BulletType_MIN = NULL_BULLET_TYPE;
  60. constexpr BulletType BulletType_MAX = ATOM_BOMB;
  61. constexpr int BulletType_ARRAYSIZE = BulletType_MAX + 1;
  62. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* BulletType_descriptor();
  63. template<typename T>
  64. inline const std::string& BulletType_Name(T enum_t_value)
  65. {
  66. static_assert(::std::is_same<T, BulletType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function BulletType_Name.");
  67. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  68. BulletType_descriptor(), enum_t_value
  69. );
  70. }
  71. inline bool BulletType_Parse(
  72. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, BulletType* value
  73. )
  74. {
  75. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<BulletType>(
  76. BulletType_descriptor(), name, value
  77. );
  78. }
  79. enum PlaceType : int
  80. {
  81. NULL_PLACE_TYPE = 0,
  82. LAND = 1,
  83. WALL = 2,
  84. GRASS = 3,
  85. CLASSROOM = 4,
  86. GATE = 5,
  87. HIDDEN_GATE = 6,
  88. PlaceType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  89. PlaceType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  90. };
  91. bool PlaceType_IsValid(int value);
  92. constexpr PlaceType PlaceType_MIN = NULL_PLACE_TYPE;
  93. constexpr PlaceType PlaceType_MAX = HIDDEN_GATE;
  94. constexpr int PlaceType_ARRAYSIZE = PlaceType_MAX + 1;
  95. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* PlaceType_descriptor();
  96. template<typename T>
  97. inline const std::string& PlaceType_Name(T enum_t_value)
  98. {
  99. static_assert(::std::is_same<T, PlaceType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function PlaceType_Name.");
  100. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  101. PlaceType_descriptor(), enum_t_value
  102. );
  103. }
  104. inline bool PlaceType_Parse(
  105. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, PlaceType* value
  106. )
  107. {
  108. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<PlaceType>(
  109. PlaceType_descriptor(), name, value
  110. );
  111. }
  112. enum ShapeType : int
  113. {
  114. NULL_SHAPE_TYPE = 0,
  115. CIRCLE = 1,
  116. SQUARE = 2,
  117. ShapeType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  118. ShapeType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  119. };
  120. bool ShapeType_IsValid(int value);
  121. constexpr ShapeType ShapeType_MIN = NULL_SHAPE_TYPE;
  122. constexpr ShapeType ShapeType_MAX = SQUARE;
  123. constexpr int ShapeType_ARRAYSIZE = ShapeType_MAX + 1;
  124. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* ShapeType_descriptor();
  125. template<typename T>
  126. inline const std::string& ShapeType_Name(T enum_t_value)
  127. {
  128. static_assert(::std::is_same<T, ShapeType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function ShapeType_Name.");
  129. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  130. ShapeType_descriptor(), enum_t_value
  131. );
  132. }
  133. inline bool ShapeType_Parse(
  134. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, ShapeType* value
  135. )
  136. {
  137. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<ShapeType>(
  138. ShapeType_descriptor(), name, value
  139. );
  140. }
  141. enum PropType : int
  142. {
  143. NULL_PROP_TYPE = 0,
  144. PTYPE1 = 1,
  145. PTYPE2 = 2,
  146. PTYPE3 = 3,
  147. PTYPE4 = 4,
  148. PropType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  149. PropType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  150. };
  151. bool PropType_IsValid(int value);
  152. constexpr PropType PropType_MIN = NULL_PROP_TYPE;
  153. constexpr PropType PropType_MAX = PTYPE4;
  154. constexpr int PropType_ARRAYSIZE = PropType_MAX + 1;
  155. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* PropType_descriptor();
  156. template<typename T>
  157. inline const std::string& PropType_Name(T enum_t_value)
  158. {
  159. static_assert(::std::is_same<T, PropType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function PropType_Name.");
  160. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  161. PropType_descriptor(), enum_t_value
  162. );
  163. }
  164. inline bool PropType_Parse(
  165. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, PropType* value
  166. )
  167. {
  168. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<PropType>(
  169. PropType_descriptor(), name, value
  170. );
  171. }
  172. enum StudentBuffType : int
  173. {
  174. NULL_SBUFF_TYPE = 0,
  175. SBUFFTYPE1 = 1,
  176. SBUFFTYPE2 = 2,
  177. SBUFFTYPE3 = 3,
  178. SBUFFTYPE4 = 4,
  179. StudentBuffType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  180. StudentBuffType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  181. };
  182. bool StudentBuffType_IsValid(int value);
  183. constexpr StudentBuffType StudentBuffType_MIN = NULL_SBUFF_TYPE;
  184. constexpr StudentBuffType StudentBuffType_MAX = SBUFFTYPE4;
  185. constexpr int StudentBuffType_ARRAYSIZE = StudentBuffType_MAX + 1;
  186. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* StudentBuffType_descriptor();
  187. template<typename T>
  188. inline const std::string& StudentBuffType_Name(T enum_t_value)
  189. {
  190. static_assert(::std::is_same<T, StudentBuffType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function StudentBuffType_Name.");
  191. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  192. StudentBuffType_descriptor(), enum_t_value
  193. );
  194. }
  195. inline bool StudentBuffType_Parse(
  196. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, StudentBuffType* value
  197. )
  198. {
  199. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<StudentBuffType>(
  200. StudentBuffType_descriptor(), name, value
  201. );
  202. }
  203. enum StudentState : int
  204. {
  205. NULL_STATUS = 0,
  206. IDLE = 1,
  207. LEARNING = 2,
  208. ADDICTED = 3,
  209. QUIT = 4,
  210. GRADUATED = 5,
  211. TREATED = 6,
  212. RESCUED = 7,
  213. STUNNED = 8,
  214. StudentState_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  215. StudentState_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  216. };
  217. bool StudentState_IsValid(int value);
  218. constexpr StudentState StudentState_MIN = NULL_STATUS;
  219. constexpr StudentState StudentState_MAX = STUNNED;
  220. constexpr int StudentState_ARRAYSIZE = StudentState_MAX + 1;
  221. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* StudentState_descriptor();
  222. template<typename T>
  223. inline const std::string& StudentState_Name(T enum_t_value)
  224. {
  225. static_assert(::std::is_same<T, StudentState>::value || ::std::is_integral<T>::value, "Incorrect type passed to function StudentState_Name.");
  226. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  227. StudentState_descriptor(), enum_t_value
  228. );
  229. }
  230. inline bool StudentState_Parse(
  231. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, StudentState* value
  232. )
  233. {
  234. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<StudentState>(
  235. StudentState_descriptor(), name, value
  236. );
  237. }
  238. enum TrickerBuffType : int
  239. {
  240. NULL_TBUFF_TYPE = 0,
  241. TBUFFTYPE1 = 1,
  242. TBUFFTYPE2 = 2,
  243. TBUFFTYPE3 = 3,
  244. TBUFFTYPE4 = 4,
  245. TrickerBuffType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  246. TrickerBuffType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  247. };
  248. bool TrickerBuffType_IsValid(int value);
  249. constexpr TrickerBuffType TrickerBuffType_MIN = NULL_TBUFF_TYPE;
  250. constexpr TrickerBuffType TrickerBuffType_MAX = TBUFFTYPE4;
  251. constexpr int TrickerBuffType_ARRAYSIZE = TrickerBuffType_MAX + 1;
  252. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* TrickerBuffType_descriptor();
  253. template<typename T>
  254. inline const std::string& TrickerBuffType_Name(T enum_t_value)
  255. {
  256. static_assert(::std::is_same<T, TrickerBuffType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function TrickerBuffType_Name.");
  257. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  258. TrickerBuffType_descriptor(), enum_t_value
  259. );
  260. }
  261. inline bool TrickerBuffType_Parse(
  262. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, TrickerBuffType* value
  263. )
  264. {
  265. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<TrickerBuffType>(
  266. TrickerBuffType_descriptor(), name, value
  267. );
  268. }
  269. enum PlayerType : int
  270. {
  271. NULL_PLAYER_TYPE = 0,
  272. STUDENT_PLAYER = 1,
  273. TRICKER_PLAYER = 2,
  274. PlayerType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  275. PlayerType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  276. };
  277. bool PlayerType_IsValid(int value);
  278. constexpr PlayerType PlayerType_MIN = NULL_PLAYER_TYPE;
  279. constexpr PlayerType PlayerType_MAX = TRICKER_PLAYER;
  280. constexpr int PlayerType_ARRAYSIZE = PlayerType_MAX + 1;
  281. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* PlayerType_descriptor();
  282. template<typename T>
  283. inline const std::string& PlayerType_Name(T enum_t_value)
  284. {
  285. static_assert(::std::is_same<T, PlayerType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function PlayerType_Name.");
  286. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  287. PlayerType_descriptor(), enum_t_value
  288. );
  289. }
  290. inline bool PlayerType_Parse(
  291. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, PlayerType* value
  292. )
  293. {
  294. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<PlayerType>(
  295. PlayerType_descriptor(), name, value
  296. );
  297. }
  298. enum StudentType : int
  299. {
  300. NULL_STUDENT_TYPE = 0,
  301. STUDENTTYPE1 = 1,
  302. STUDENTTYPE2 = 2,
  303. STUDENTTYPE3 = 3,
  304. STUDENTTYPE4 = 4,
  305. StudentType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  306. StudentType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  307. };
  308. bool StudentType_IsValid(int value);
  309. constexpr StudentType StudentType_MIN = NULL_STUDENT_TYPE;
  310. constexpr StudentType StudentType_MAX = STUDENTTYPE4;
  311. constexpr int StudentType_ARRAYSIZE = StudentType_MAX + 1;
  312. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* StudentType_descriptor();
  313. template<typename T>
  314. inline const std::string& StudentType_Name(T enum_t_value)
  315. {
  316. static_assert(::std::is_same<T, StudentType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function StudentType_Name.");
  317. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  318. StudentType_descriptor(), enum_t_value
  319. );
  320. }
  321. inline bool StudentType_Parse(
  322. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, StudentType* value
  323. )
  324. {
  325. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<StudentType>(
  326. StudentType_descriptor(), name, value
  327. );
  328. }
  329. enum TrickerType : int
  330. {
  331. NULL_TRICKER_TYPE = 0,
  332. TRICKERTYPE1 = 1,
  333. TRICKERTYPE2 = 2,
  334. TRICKERTYPE3 = 3,
  335. TRICKERTYPE4 = 4,
  336. TrickerType_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  337. TrickerType_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  338. };
  339. bool TrickerType_IsValid(int value);
  340. constexpr TrickerType TrickerType_MIN = NULL_TRICKER_TYPE;
  341. constexpr TrickerType TrickerType_MAX = TRICKERTYPE4;
  342. constexpr int TrickerType_ARRAYSIZE = TrickerType_MAX + 1;
  343. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* TrickerType_descriptor();
  344. template<typename T>
  345. inline const std::string& TrickerType_Name(T enum_t_value)
  346. {
  347. static_assert(::std::is_same<T, TrickerType>::value || ::std::is_integral<T>::value, "Incorrect type passed to function TrickerType_Name.");
  348. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  349. TrickerType_descriptor(), enum_t_value
  350. );
  351. }
  352. inline bool TrickerType_Parse(
  353. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, TrickerType* value
  354. )
  355. {
  356. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<TrickerType>(
  357. TrickerType_descriptor(), name, value
  358. );
  359. }
  360. enum GameState : int
  361. {
  362. NULL_GAME_STATE = 0,
  363. GAME_START = 1,
  364. GAME_RUNNING = 2,
  365. GAME_END = 3,
  366. GameState_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::min(),
  367. GameState_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<int32_t>::max()
  368. };
  369. bool GameState_IsValid(int value);
  370. constexpr GameState GameState_MIN = NULL_GAME_STATE;
  371. constexpr GameState GameState_MAX = GAME_END;
  372. constexpr int GameState_ARRAYSIZE = GameState_MAX + 1;
  373. const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* GameState_descriptor();
  374. template<typename T>
  375. inline const std::string& GameState_Name(T enum_t_value)
  376. {
  377. static_assert(::std::is_same<T, GameState>::value || ::std::is_integral<T>::value, "Incorrect type passed to function GameState_Name.");
  378. return ::PROTOBUF_NAMESPACE_ID::internal::NameOfEnum(
  379. GameState_descriptor(), enum_t_value
  380. );
  381. }
  382. inline bool GameState_Parse(
  383. ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, GameState* value
  384. )
  385. {
  386. return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<GameState>(
  387. GameState_descriptor(), name, value
  388. );
  389. }
  390. // ===================================================================
  391. // ===================================================================
  392. // ===================================================================
  393. #ifdef __GNUC__
  394. #pragma GCC diagnostic push
  395. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  396. #endif // __GNUC__
  397. #ifdef __GNUC__
  398. #pragma GCC diagnostic pop
  399. #endif // __GNUC__
  400. // @@protoc_insertion_point(namespace_scope)
  401. } // namespace protobuf
  402. PROTOBUF_NAMESPACE_OPEN
  403. template<>
  404. struct is_proto_enum<::protobuf::BulletType> : ::std::true_type
  405. {
  406. };
  407. template<>
  408. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::BulletType>()
  409. {
  410. return ::protobuf::BulletType_descriptor();
  411. }
  412. template<>
  413. struct is_proto_enum<::protobuf::PlaceType> : ::std::true_type
  414. {
  415. };
  416. template<>
  417. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::PlaceType>()
  418. {
  419. return ::protobuf::PlaceType_descriptor();
  420. }
  421. template<>
  422. struct is_proto_enum<::protobuf::ShapeType> : ::std::true_type
  423. {
  424. };
  425. template<>
  426. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::ShapeType>()
  427. {
  428. return ::protobuf::ShapeType_descriptor();
  429. }
  430. template<>
  431. struct is_proto_enum<::protobuf::PropType> : ::std::true_type
  432. {
  433. };
  434. template<>
  435. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::PropType>()
  436. {
  437. return ::protobuf::PropType_descriptor();
  438. }
  439. template<>
  440. struct is_proto_enum<::protobuf::StudentBuffType> : ::std::true_type
  441. {
  442. };
  443. template<>
  444. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::StudentBuffType>()
  445. {
  446. return ::protobuf::StudentBuffType_descriptor();
  447. }
  448. template<>
  449. struct is_proto_enum<::protobuf::StudentState> : ::std::true_type
  450. {
  451. };
  452. template<>
  453. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::StudentState>()
  454. {
  455. return ::protobuf::StudentState_descriptor();
  456. }
  457. template<>
  458. struct is_proto_enum<::protobuf::TrickerBuffType> : ::std::true_type
  459. {
  460. };
  461. template<>
  462. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::TrickerBuffType>()
  463. {
  464. return ::protobuf::TrickerBuffType_descriptor();
  465. }
  466. template<>
  467. struct is_proto_enum<::protobuf::PlayerType> : ::std::true_type
  468. {
  469. };
  470. template<>
  471. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::PlayerType>()
  472. {
  473. return ::protobuf::PlayerType_descriptor();
  474. }
  475. template<>
  476. struct is_proto_enum<::protobuf::StudentType> : ::std::true_type
  477. {
  478. };
  479. template<>
  480. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::StudentType>()
  481. {
  482. return ::protobuf::StudentType_descriptor();
  483. }
  484. template<>
  485. struct is_proto_enum<::protobuf::TrickerType> : ::std::true_type
  486. {
  487. };
  488. template<>
  489. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::TrickerType>()
  490. {
  491. return ::protobuf::TrickerType_descriptor();
  492. }
  493. template<>
  494. struct is_proto_enum<::protobuf::GameState> : ::std::true_type
  495. {
  496. };
  497. template<>
  498. inline const EnumDescriptor* GetEnumDescriptor<::protobuf::GameState>()
  499. {
  500. return ::protobuf::GameState_descriptor();
  501. }
  502. PROTOBUF_NAMESPACE_CLOSE
  503. // @@protoc_insertion_point(global_scope)
  504. #include <google/protobuf/port_undef.inc>
  505. #endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_MessageType_2eproto