1
0
Fork 0
spectre/source/Platform/Unix/X11Input.h

21 lines
325 B
C++

#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 */