summaryrefslogtreecommitdiff
path: root/inc/input.h
blob: 73452a405cf633aadd12cd22bc9e26267ddcee27 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

enum Key { K_LEFT, K_RIGHT, K_UP, K_DOWN, K_O, K_X };

enum KeyState { KS_UP, KS_DOWN, KS_PRESSED };

void input_update(void);
int input_up(unsigned int);
int input_down(unsigned int);
int input_pressed(unsigned int);