Added Keyboard::GetKeyName (experimental)

Former-commit-id: a937b98ceeed3cb7c64bf6c1f544bb7021ad01bd
This commit is contained in:
Lynix
2012-10-26 14:09:09 +02:00
parent 4c23ccf1c6
commit 3a9e8850c0
4 changed files with 91 additions and 31 deletions

View File

@@ -14,6 +14,11 @@
#include <Nazara/Utility/Debug.hpp>
NzString NzKeyboard::GetKeyName(Key key)
{
return NzEventImpl::GetKeyName(key);
}
bool NzKeyboard::IsKeyPressed(Key key)
{
return NzEventImpl::IsKeyPressed(key);