mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-22 20:57:46 +00:00
18 lines
285 B
C
18 lines
285 B
C
![]() |
#ifndef XIV_UTILS_CONV_H
|
||
|
#define XIV_UTILS_CONV_H
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <vector>
|
||
|
#include <ostream>
|
||
|
|
||
|
namespace xiv {
|
||
|
namespace utils {
|
||
|
namespace conv {
|
||
|
float half2float( const uint16_t i_value );
|
||
|
float ubyte2float( const uint8_t i_value );
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // XIV_UTILS_CONV_H
|