source/Platform/Unix: stub implementation
This commit is contained in:
parent
4d69ff3a18
commit
6464838159
20 changed files with 498 additions and 2 deletions
20
source/Platform/Unix/X11Keyboard.cpp
Normal file
20
source/Platform/Unix/X11Keyboard.cpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#include "X11Keyboard.h"
|
||||
|
||||
namespace sp {
|
||||
|
||||
void X11Keyboard::init()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool X11Keyboard::isKeyDown(Keyboard::Key key)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void X11Keyboard::update(InputModule *input)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} // namespace sp
|
||||
Loading…
Add table
Add a link
Reference in a new issue