You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/components/misc/float16.hpp

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