snake-pp/include/menu.h
jonny_jr9 d94eed0136 Implement input.c
- Implement input handling in input.c
  - test successful
- Add missing function showPauseScreen to menu.h/c
2023-11-11 14:32:47 +01:00

20 lines
495 B
C

#pragma once
#include "SDL.h"
void showStartScreen();
//zum Starten Enter drücken
//optional: "E" eingeben für Settings
void showPauseScreen();
void showLeaderboard();
//zeigt die besten Spieldurchläufe inkl. Punktestand an
void showSettings(); //optional
//startet Settungs-Menü
void menuHandleInput(SDL_Event event); //als Übergabeparameter: int(?) event -> welcher Datentyp hängt von SDL ab
//switch case für welcher Modus
//switch case für welche Taste gedrückt wurde