#pragma once #include namespace zxscreen { void init(); void reinit(); void focus(); void refresh(const uint32_t dt); void fullrefresh(); void debugrefresh(); void redraw(const bool present=true); void present(); void setTitle(const char* title); void incZoom(); void decZoom(); void toggleFullscreen(); const bool getFullscreen(); void toggleFullRefresh(); const bool getFullRefresh(); SDL_Renderer *getrenderer(); }