source/Platform/Unix: stub implementation
This commit is contained in:
parent
b0d14b91e0
commit
38d333862a
20 changed files with 498 additions and 2 deletions
22
source/Platform/Unix/X11Input.cpp
Normal file
22
source/Platform/Unix/X11Input.cpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
#include "X11Keyboard.h"
|
||||
#include "X11Mouse.h"
|
||||
#include "X11Input.h"
|
||||
|
||||
namespace sp {
|
||||
|
||||
Keyboard* X11Input::createKeyboard()
|
||||
{
|
||||
return new X11Keyboard();
|
||||
}
|
||||
|
||||
Mouse* X11Input::createMouse()
|
||||
{
|
||||
return new X11Mouse();
|
||||
}
|
||||
|
||||
void X11Input::update()
|
||||
{
|
||||
}
|
||||
|
||||
} // namespace sp
|
||||
Loading…
Add table
Add a link
Reference in a new issue