source/Platform/Unix: stub implementation
This commit is contained in:
parent
b0d14b91e0
commit
38d333862a
20 changed files with 498 additions and 2 deletions
21
source/Platform/Unix/X11Input.h
Normal file
21
source/Platform/Unix/X11Input.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
#ifndef PLATFORM_UNIX_X11INPUT_H
|
||||
#define PLATFORM_UNIX_X11INPUT_H
|
||||
|
||||
#include <Platform/PlatformInput.h>
|
||||
|
||||
namespace sp {
|
||||
|
||||
class X11Input : public PlatformInput
|
||||
{
|
||||
public :
|
||||
virtual Keyboard* createKeyboard();
|
||||
|
||||
virtual Mouse* createMouse();
|
||||
|
||||
virtual void update();
|
||||
};
|
||||
|
||||
} // namespace sp
|
||||
|
||||
#endif /* PLATFORM_UNIX_X11INPUT_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue