osb/source/game/interfaces/StarDamageBarEntity.cpp

12 lines
219 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#include "StarDamageBarEntity.hpp"
namespace Star {
EnumMap<DamageBarType> const DamageBarTypeNames{
{DamageBarType::Default, "Default"},
{DamageBarType::None, "None"},
{DamageBarType::Special, "Special"}
};
}