- Treballant en el menu del joc

This commit is contained in:
2024-12-03 15:29:05 +01:00
parent eee5753a7f
commit 2ebe1916a4
5 changed files with 177 additions and 4 deletions

View File

@@ -1,14 +1,17 @@
#pragma once
#include <stdint.h>
#include <SDL2/SDL.h>
namespace zxscreen
{
void init();
void reinit();
void refresh(const uint8_t dt);
void redraw();
void redraw(const bool present=true);
void present();
void incZoom();
void decZoom();
void toggleFullscreen();
SDL_Renderer *getrenderer();
}