aboutsummaryrefslogtreecommitdiff
path: root/sp/src/game/client/kbutton.h
blob: c3dc2abd61089b99e630c5386dd79684d1c10882 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//
//=============================================================================//
#if !defined( KBUTTON_H )
#define KBUTTON_H
#ifdef _WIN32
#pragma once
#endif

struct kbutton_t
{
	// key nums holding it down
	int		down[ 2 ];		
	// low bit is down state
	int		state;			
};

#endif // KBUTTON_H