McRogueFace/src/UIDrawable.cpp

13 lines
206 B
C++
Raw Normal View History

#include "UIDrawable.h"
UIDrawable::UIDrawable() { click_callable = NULL; }
void UIDrawable::click_unregister()
{
click_callable.reset();
}
void UIDrawable::render()
{
render(sf::Vector2f());
}