doesn't compile, but UI.h/.cpp code has been divvy'd up.

refs #43 @2h
This commit is contained in:
John McCardle 2024-04-08 22:45:00 -04:00
commit 83a63a3093
18 changed files with 5329 additions and 2910 deletions

13
src/UIDrawable.cpp Normal file
View file

@ -0,0 +1,13 @@
#include "UIDrawable.h"
UIDrawable::UIDrawable() { click_callable = NULL; }
void UIDrawable::click_unregister()
{
click_callable.reset();
}
void UIDrawable::render()
{
render(sf::Vector2f());
}