Broken auto sizing

This commit is contained in:
2023-12-22 23:29:03 -06:00
parent 92f8b17db6
commit 9822b1a57f
26 changed files with 512 additions and 168 deletions

View File

@@ -0,0 +1,18 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "ui/container/UIContainer.hpp"
namespace Dawn {
class UIColumnContainer final : public UIContainer {
public:
void updateAlignment(
const glm::vec2 parentPosition,
const glm::vec2 parentSize,
const float_t canvasScale
) override;
};
}