mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
14 lines
208 B
C++
14 lines
208 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
typedef int16_t quat_int_16;
|
|
|
|
class QuatInt16
|
|
{
|
|
QuatInt16() = default;
|
|
|
|
public:
|
|
static quat_int_16 ToInt16(float quat);
|
|
static float ToFloat(quat_int_16 quat);
|
|
}; |