mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
32 lines
672 B
C++
32 lines
672 B
C++
#pragma once
|
|
|
|
#include "Game/T5/T5.h"
|
|
|
|
namespace T5
|
|
{
|
|
inline const char* HITLOC_NAMES[]{
|
|
// clang-format off
|
|
"none",
|
|
"helmet",
|
|
"head",
|
|
"neck",
|
|
"torso_upper",
|
|
"torso_lower",
|
|
"right_arm_upper",
|
|
"left_arm_upper",
|
|
"right_arm_lower",
|
|
"left_arm_lower",
|
|
"right_hand",
|
|
"left_hand",
|
|
"right_leg_upper",
|
|
"left_leg_upper",
|
|
"right_leg_lower",
|
|
"left_leg_lower",
|
|
"right_foot",
|
|
"left_foot",
|
|
"gun",
|
|
// clang-format on
|
|
};
|
|
static_assert(std::extent_v<decltype(HITLOC_NAMES)> == HITLOC_COUNT);
|
|
} // namespace T5
|