mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
21 lines
336 B
C++
21 lines
336 B
C++
#pragma once
|
|
|
|
#include <zwidget/core/widget.h>
|
|
|
|
class ImageBox;
|
|
class TextLabel;
|
|
|
|
class LauncherBanner : public Widget
|
|
{
|
|
public:
|
|
LauncherBanner(Widget* parent);
|
|
void UpdateLanguage();
|
|
|
|
double GetPreferredHeight() const;
|
|
|
|
private:
|
|
void OnGeometryChanged() override;
|
|
|
|
ImageBox* Logo = nullptr;
|
|
TextLabel* VersionLabel = nullptr;
|
|
};
|