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

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