Initial commit, showing ui above target window

This commit is contained in:
dec05eba
2022-03-30 16:16:51 +02:00
parent 44b986c762
commit 889efe51b2
14 changed files with 398 additions and 73 deletions

7
src/gui/Widget.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "../../include/gui/Widget.hpp"
namespace gsr {
void Widget::set_position(mgl::vec2f position) {
this->position = position;
}
}