mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:20:04 +00:00
14 lines
194 B
C++
14 lines
194 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace util
|
|
{
|
|
|
|
float DecodeFloat16(uint16_t hex);
|
|
float DecodeFloat32(uint16_t msw, uint16_t lsw);
|
|
|
|
} // namespace util
|
|
} // namespace scwx
|