ES-DE/src/views/SystemView.h

27 lines
509 B
C
Raw Normal View History

#pragma once
#include "../GuiComponent.h"
#include "../components/ImageComponent.h"
#include "../components/TextComponent.h"
#include "../components/ScrollableContainer.h"
class SystemData;
class SystemView : public GuiComponent
{
public:
SystemView(Window* window, SystemData* system);
void updateData();
bool input(InputConfig* config, Input input) override;
private:
SystemData* mSystem;
TextComponent mHeaderText;
ImageComponent mHeaderImage;
ImageComponent mImage;
ThemeExtras mExtras;
};