/// Load scene files. #pragma once #include typedef struct Gfx Gfx; typedef struct Model Model; /// Load a model. /// /// Currently only supports the GLTF format. Model* gfx_model_load(Gfx*, const LoadModelCmd*);