snake-pp/include/render.h
jonny_jr9 ac5873c9e7 Fix bug SDL-window freezing on windows
apparently SDL window freezes on windows,
when the input events are not repeatedly handled.
2023-12-10 18:03:02 +01:00

12 lines
208 B
C

#pragma once
#include "game.h"
#include "snake.h"
#include "SDL.h"
void renderGame();
//erstellt aus Spielfeldstruktur die graphische Anzeige mit SDL-Framework
int CreateSDLWindow();
void DestroyWindow();