blob: d070c6ebb16c7a443f67a97e908938cc8330284d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "StarDamageBarEntity.hpp"
namespace Star {
EnumMap<DamageBarType> const DamageBarTypeNames{
{DamageBarType::Default, "Default"},
{DamageBarType::None, "None"},
{DamageBarType::Special, "Special"}
};
}
|