diff options
author | joschiwald <joschiwald.trinity@gmail.com> | 2017-07-18 15:16:32 +0200 |
---|---|---|
committer | joschiwald <joschiwald.trinity@gmail.com> | 2017-07-18 15:16:32 +0200 |
commit | ae070a1b64da616d4a6452793d22f80542a2c40f (patch) | |
tree | 14a3f2e1e75c579dfcdbd1cc357efb85e030a760 /src/common/Utilities/Util.h | |
parent | ca9b0b029fe2a7c1f78d5d19a078df779bf2f0a7 (diff) |
Core/Spells: Implemented ConeAngle from DB2
Diffstat (limited to 'src/common/Utilities/Util.h')
-rw-r--r-- | src/common/Utilities/Util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Utilities/Util.h b/src/common/Utilities/Util.h index cd17946a40b..eac0611f913 100644 --- a/src/common/Utilities/Util.h +++ b/src/common/Utilities/Util.h @@ -302,6 +302,7 @@ TC_COMMON_API std::string ByteArrayToHexStr(uint8 const* bytes, uint32 length, b TC_COMMON_API void HexStrToByteArray(std::string const& str, uint8* out, bool reverse = false); TC_COMMON_API bool StringToBool(std::string const& str); +TC_COMMON_API float DegToRad(float degrees); template<class Container> std::string StringJoin(Container const& c, std::string delimiter) |