0
0
Fork 0
mirror of https://github.com/ENSL/NS.git synced 2025-03-11 03:24:27 +00:00
NS/main/source/cl_dll/kbutton.h

11 lines
200 B
C
Raw Normal View History

#if !defined( KBUTTONH )
#define KBUTTONH
#pragma once
typedef struct kbutton_s
{
int down[2]; // key nums holding it down
int state; // low bit is down state
} kbutton_t;
#endif // !KBUTTONH