1
0
Fork 0

source/Platform/Unix: stub implementation

This commit is contained in:
Henrik Hautakoski 2019-06-01 01:13:44 +02:00
parent 4d69ff3a18
commit 6464838159
20 changed files with 498 additions and 2 deletions

View 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