mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-29 03:33:48 +00:00
9 lines
208 B
C++
9 lines
208 B
C++
#ifndef BBGE_LEGACYKEYCODES_H
|
|
#define BBGE_LEGACYKEYCODES_H
|
|
|
|
#include <string>
|
|
|
|
unsigned getLegacyInputCodeFromKeyName(const std::string& name);
|
|
const char *getLegacyKeyNameFromInputCode(unsigned k);
|
|
|
|
#endif
|