source/Platform/Unix: stub implementation
This commit is contained in:
parent
b0d14b91e0
commit
38d333862a
20 changed files with 498 additions and 2 deletions
31
source/Platform/Unix/X11Mouse.cpp
Normal file
31
source/Platform/Unix/X11Mouse.cpp
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
|
||||
#include "X11Mouse.h"
|
||||
|
||||
namespace sp {
|
||||
|
||||
void X11Mouse::init()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Vector2f X11Mouse::getPosition() const
|
||||
{
|
||||
return m_position;
|
||||
}
|
||||
|
||||
Vector2f X11Mouse::getAbsPosition() const
|
||||
{
|
||||
return m_position;
|
||||
}
|
||||
|
||||
bool X11Mouse::isButtonDown(Mouse::Button button) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void X11Mouse::update(InputModule *input)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} // namespace sp
|
||||
Loading…
Add table
Add a link
Reference in a new issue