2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-04 17:42:22 +01:00
xash3d-fwgs/common/kbutton.h

19 lines
399 B
C

//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#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