d2tweaks-rnd2k/include/common/enum_helper.h

9 lines
149 B
C
Raw Normal View History

2024-04-17 03:45:38 +00:00
#pragma once
template<typename TEnum>
class enum_helper {
public:
static constexpr const char* to_string(TEnum value) {
return __FUNCSIG__;
}
};