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