removed 'coord' ui elements contructors argument

This commit is contained in:
MihailRis
2024-03-06 09:56:10 +03:00
parent c71c918a9c
commit a80e7e4220
9 changed files with 41 additions and 36 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
using gui::UINode;
using gui::Align;
UINode::UINode(glm::vec2 coord, glm::vec2 size) : coord(coord), size(size) {
UINode::UINode(glm::vec2 size) : size(size) {
}
UINode::~UINode() {