snake-pp/include/render.h
Hanse-14 18feb2ec62 Add Leaderboard
- it is only possible to close with clicking on 'X' with mouse
2023-12-18 07:22:01 +01:00

22 lines
351 B
C

#pragma once
#include <string.h>
#include "game.h"
#include "snake.h"
#include "menu.h"
#include "SDL.h"
void renderGame();
//erstellt aus Spielfeldstruktur die graphische Anzeige mit SDL-Framework
int CreateSDLWindow();
void DestroySDLWindow();
void renderStartMenu();
void renderSettings();
void renderInfoScreen();
void renderLeaderboard();