chip-8/src/keypad.h
2023-12-26 17:51:39 +01:00

11 lines
165 B
C

#pragma once
#include "raylib.h"
/**
* @brief Return the hex code of the key currently pressed and -1 ortherwise
*
* @return int
*/
int KeypadGetPressed();