3dtoys/keys.h

15 lines
250 B
C
Raw Permalink Normal View History

2024-08-13 06:08:21 +00:00
#ifndef __3DTOYS_KEYS
#define __3DTOYS_KEYS
#define KEY_ESC 9
#define KEY_W 25
#define KEY_A 38
#define KEY_S 39
#define KEY_D 40
#define KEY_LSHIFT 50
#define KEY_SPACE 65
#define MOUSE_LCLICK 1
#define MOUSE_MCLICK 2
#define MOUSE_RCLICK 3
#endif