Initial commit
This commit is contained in:
commit
edfc5298e1
252 changed files with 93965 additions and 0 deletions
18
source/Platform/PlatformInput.h
Normal file
18
source/Platform/PlatformInput.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
|
||||
#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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue