Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
game_of_life/include/events.h

14 lines
198 B
C
Raw Normal View History

2024-09-11 17:48:22 +00:00
#ifndef EVENTS_H
#define EVENTS_H
#include <SDL_events.h>
// Public
void handle_events();
//Private
void handle_key_event(SDL_Keycode key_pressed);
void handle_mouse_event(int x, int y);
#endif