Push my suggestion for CI tests.

This commit is contained in:
Jettford
2023-12-19 15:24:26 +00:00
parent e2391665b9
commit 79b4fa7d3e
6 changed files with 23 additions and 8 deletions

View File

@@ -3,6 +3,8 @@
#include <cstdint>
#include "magic_enum/magic_enum.hpp"
enum class eGameMessageType : uint16_t {
GET_POSITION = 0,
GET_ROTATION = 1,
@@ -1602,4 +1604,10 @@ enum class eGameMessageType : uint16_t {
GET_IS_ON_RAIL = 1772
};
template <>
struct magic_enum::customize::enum_range<eGameMessageType> {
static constexpr int min = 0;
static constexpr int max = 1772;
};
#endif //!__EGAMEMESSAGETYPE__H__