#ifndef GBC_RENDER_H #define GBC_RENDER_H #include "gb.h" void term_init(void); void term_restore(void); void render_frame(GB *gb); void render_force_full(void); // force a complete repaint next frame // Poll keyboard, update gb->buttons. Returns false if quit requested. bool input_poll(GB *gb); #endif