20 lines
209 B
C++
20 lines
209 B
C++
#include "X11Keyboard.h"
|
|
|
|
namespace sp {
|
|
|
|
void X11Keyboard::init()
|
|
{
|
|
|
|
}
|
|
|
|
bool X11Keyboard::isKeyDown(Keyboard::Key key)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void X11Keyboard::update(InputModule *input)
|
|
{
|
|
|
|
}
|
|
|
|
} // namespace sp
|