Starbound/source/game/interfaces/StarDamageBarEntity.cpp
2025-03-21 22:23:30 +11:00

11 lines
219 B
C++

#include "StarDamageBarEntity.hpp"
namespace Star {
EnumMap<DamageBarType> const DamageBarTypeNames{
{DamageBarType::Default, "Default"},
{DamageBarType::None, "None"},
{DamageBarType::Special, "Special"}
};
}