Files
RedScarfEngine/red_scarf_engine/src/main.c
T
Piotr Krygier 99fb36d9fd Add basic loader for gltf
Added loading of avocado. Something is still wrong though,
becaus I cannot see the seed. But basic functionality is there.
2026-03-19 21:00:39 +01:00

19 lines
368 B
C

#include "red_scarf_engine.h"
#include "utilities/commons.h"
#include "utilities/errors_common.h"
#include "graphics/src/mesh_controller.h"
int main(int argc, char** argv)
{
rse_err_t status = RSE_ERROR_NO_ERROR;
rse_context context;
(void)argc;
(void)argv;
STATUS_CHECK(rse_init(&context));
STATUS_CHECK(rse_run(context));
return 0;
}