#include "renderer.h" int main() { render_state* rs = renInit("Hello World"); if (rs == nullptr) return 1; renDoRenderLoop(rs); return 0; }