aboutsummaryrefslogtreecommitdiff
path: root/sources/TZR_IsKeyPressed.c
blob: 4b3a4beddd523b611beb3db6eeedbc9cdf569700 (plain)
1
2
3
4
5
6
#include "TZR_keystate.h"

bool TZR_IsKeyPressed(int scancode)
{
	return (TZR_GetKeyState(scancode) == TZR_KEYSTATE_PRESS);
}