20 lines
516 B
C++
20 lines
516 B
C++
// 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 UIRowContainer final : public UIContainer {
|
|
public:
|
|
float_t getContentWidth() override;
|
|
float_t getContentHeight() override;
|
|
void updateAlignment(
|
|
const glm::vec2 parentPosition,
|
|
const glm::vec2 parentSize,
|
|
const float_t canvasScale
|
|
) override;
|
|
};
|
|
} |