15 lines
188 B
C++
15 lines
188 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace input
|
|
{
|
|
void init();
|
|
|
|
bool anyKey();
|
|
bool keyPressed(uint8_t tecla);
|
|
uint8_t getKey();
|
|
|
|
void updateKey(uint8_t key);
|
|
}
|