Initial commit
This commit is contained in:
commit
edfc5298e1
252 changed files with 93965 additions and 0 deletions
27
source/Platform/Win32/Win32Input.cpp
Normal file
27
source/Platform/Win32/Win32Input.cpp
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
|
||||
|
||||
#include "Win32Keyboard.h"
|
||||
#include "Win32Mouse.h"
|
||||
#include "Win32Input.h"
|
||||
|
||||
Win32InputMsgBuffer Win32Input::inputMsgBuffer;
|
||||
|
||||
Win32InputMsgBuffer::Win32InputMsgBuffer() :
|
||||
index (0),
|
||||
enabled (false)
|
||||
{
|
||||
}
|
||||
|
||||
Keyboard* Win32Input::createKeyboard()
|
||||
{
|
||||
return new Win32Keyboard();
|
||||
}
|
||||
|
||||
Mouse* Win32Input::createMouse()
|
||||
{
|
||||
return new Win32Mouse();
|
||||
}
|
||||
|
||||
void Win32Input::update()
|
||||
{
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue