mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 09:44:02 +00:00
9 lines
186 B
C++
9 lines
186 B
C++
#ifndef BBGE_LEGACYKEYCODES_H
|
|
#define BBGE_LEGACYKEYCODES_H
|
|
|
|
#include <string>
|
|
|
|
int getInputCodeFromKeyName(const char *name);
|
|
const std::string& getKeyNameFromInputCode(int k);
|
|
|
|
#endif
|