snake-pp/include/input.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

6 lines
219 B
C

#pragma once
// checks for and processes queued SDL input events and passes them
// to menu.c or controls snake depending on current game.gameState
// => has to be run repeatedly from main()
void processInputEvent();