mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
12 lines
171 B
C++
12 lines
171 B
C++
|
#ifndef OPENMW_COMPONENTS_MISC_FLOAT16_HPP
|
||
|
#define OPENMW_COMPONENTS_MISC_FLOAT16_HPP
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Misc
|
||
|
{
|
||
|
using float16_t = std::uint16_t;
|
||
|
}
|
||
|
|
||
|
#endif
|