11 lines
165 B
C
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();
|
|
|