99fb36d9fd
Added loading of avocado. Something is still wrong though, becaus I cannot see the seed. But basic functionality is there.
19 lines
368 B
C
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;
|
|
}
|