Add generic XModel Export dumper without bone support yet

This commit is contained in:
Jan
2021-08-13 09:40:12 +02:00
parent 56ebbbcfa8
commit 767daca2ea
28 changed files with 1112 additions and 30 deletions

View File

@ -0,0 +1,14 @@
#pragma once
#include <cstdint>
typedef uint16_t half_float_t;
class HalfFloat
{
HalfFloat() = default;
public:
static float ToFloat(half_float_t half);
static half_float_t ToHalf(float f);
};