summaryrefslogtreecommitdiff
path: root/src/input.h
blob: 28b7cfcf4dcf71321d553cb75b5b6369b763f9cf (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LEO_INPUT_H
#define LEO_INPUT_H

#include <stdbool.h>
#include <SDL3/SDL_events.h>

void LEO_Input_update(const SDL_Event event);

bool LEO_Input_quit();

#endif