chip-8/src/keypad.h

12 lines
165 B
C
Raw Normal View History

2023-12-25 21:21:20 +01:00
#pragma once
#include "raylib.h"
2023-12-26 17:51:39 +01:00
/**
* @brief Return the hex code of the key currently pressed and -1 ortherwise
*
* @return int
*/
2023-12-25 21:29:52 +01:00
int KeypadGetPressed();
2023-12-25 21:21:20 +01:00