You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
454 B
C++
22 lines
454 B
C++
#include "controllers.hpp"
|
|
|
|
#include <MyGUI_InputManager.h>
|
|
#include <MyGUI_Widget.h>
|
|
|
|
namespace MWGui
|
|
{
|
|
namespace Controllers
|
|
{
|
|
void ControllerFollowMouse::prepareItem(MyGUI::Widget *_widget)
|
|
{
|
|
}
|
|
|
|
bool ControllerFollowMouse::addTime(MyGUI::Widget *_widget, float _time)
|
|
{
|
|
_widget->setPosition(MyGUI::InputManager::getInstance().getMousePosition());
|
|
return true;
|
|
}
|
|
|
|
}
|
|
}
|