mesh loading

This commit is contained in:
Asuro
2025-02-10 01:49:03 +01:00
parent 90bc5753a9
commit 16fcfa8af9
17 changed files with 203 additions and 63 deletions

View File

@@ -5,12 +5,14 @@
namespace Game
{
struct VertexData
struct PosColorVertex
{
float X;
float Y;
float Z;
uint32_t VertCol;
float x;
float y;
float z;
uint32_t abgr;
float uv_x;
float uv_y;
};
struct BgfxCallback : public bgfx::CallbackI