blob: 8904655fa16b00d9f058091e0588f06185f6a538 (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
#include "defines.h"
struct core;
model_handle model_load_obj(struct core *core, const char *path, bool invert_texture_y);
model_handle model_load_gltf(struct core *core, const char *path, bool invert_texture_y);
|