1
0
Fork 0
spectre/source/Platform/Win32/Win32Input.h

22 lines
342 B
C++

#ifndef PLATFORM_WIN32_INPUT_H
#define PLATFORM_WIN32_INPUT_H
#include <Windows.h>
#include <Platform/PlatformInput.h>
namespace sp {
class Win32Input : public PlatformInput
{
public :
virtual Keyboard* createKeyboard();
virtual Mouse* createMouse();
virtual void update();
};
} // namespace sp
#endif /* PLATFORM_WIN32_INPUT_H */