#pragma once #include #include #include "sokol/sokol_gfx.h" typedef struct ecs_world_t ecs_world_t; typedef struct app_context_t { ecs_world_t* world; sg_pass_action* pass_action; void (*draw_triangle)(void); } app_context_t;