mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-22 12:47:45 +00:00
13 lines
196 B
C++
13 lines
196 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
#include <ostream>
|
|
|
|
namespace xiv::utils::conv
|
|
{
|
|
float half2float( const uint16_t i_value );
|
|
|
|
float ubyte2float( const uint8_t i_value );
|
|
}
|
|
|