apparently SDL window freezes on windows, when the input events are not repeatedly handled.
12 lines
208 B
C
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(); |