1
0
Fork 0
spectre/source/Platform/PlatformInput.h
2016-01-10 09:26:43 +01:00

18 lines
253 B
C++

#ifndef PLATFORM_INPUT_H
#define PLATFORM_INPUT_H
class Keyboard;
class Mouse;
class PlatformInput
{
public :
virtual Keyboard* createKeyboard() = 0;
virtual Mouse* createMouse() = 0;
virtual void update() = 0;
};
#endif /* PLATFORM_INPUT_H */