mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-23 05:07:46 +00:00
15 lines
263 B
C++
15 lines
263 B
C++
#ifndef XIV_UTILS_CONV_H
|
|
#define XIV_UTILS_CONV_H
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
#include <ostream>
|
|
|
|
namespace xivps3::utils::conv
|
|
{
|
|
float half2float( const uint16_t i_value );
|
|
|
|
float ubyte2float( const uint8_t i_value );
|
|
}
|
|
|
|
#endif // XIV_UTILS_CONV_H
|