#ifndef DRAW_H #define DRAW_H #include // size_t #include #include "../libsok/sok.h" #include "../text/levels.h" typedef struct { SDL_Renderer * const renderer; const sok_ctx_t * const ctx; const size_t * const level_num; const level_t *level; const size_t * const zoom; sok_pos_t render_ofs; } draw_ctx_t; void draw(draw_ctx_t * const); #endif /* DRAW_H */