Skip to content
Snippets Groups Projects
Commit b830dac2 authored by Wouter van Oortmerssen's avatar Wouter van Oortmerssen
Browse files

Added missing generated code files.

Change-Id: Ifb977411b65f8721cf9db891d7a62798bd593c0c
parent dc38f93c
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,14 @@ inline const char **EnumNamesEquipment() {
inline const char *EnumNameEquipment(Equipment e) { return EnumNamesEquipment()[static_cast<int>(e)]; }
template<typename T> struct EquipmentTraits {
static const Equipment enum_value = Equipment_NONE;
};
template<> struct EquipmentTraits<Weapon> {
static const Equipment enum_value = Equipment_Weapon;
};
inline bool VerifyEquipment(flatbuffers::Verifier &verifier, const void *union_obj, Equipment type);
MANUALLY_ALIGNED_STRUCT(4) Vec3 FLATBUFFERS_FINAL_CLASS {
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment