Etterna 0.74.4
Loading...
Searching...
No Matches
ScreenInstallOverlay.h
1#ifndef ScreenInstallOverlay_H
2#define ScreenInstallOverlay_H
3
4#include "Etterna/Actor/Base/BitmapText.h"
5#include "Etterna/Models/Misc/InputEventPlus.h"
6#include "Screen.h"
7
10{
11 public:
12 ~ScreenInstallOverlay() override;
13 void Init() override;
14
15 void Update(float fDeltaTime) override;
16 bool Input(const InputEventPlus& input) override;
17
18 private:
19 void UpdateText();
20
21 BitmapText m_textStatus;
22};
23#endif
An actor that holds a Font and draws text to the screen.
Definition BitmapText.h:11
Holds a device input plus Game/Menu translations.
Definition InputEventPlus.h:9
Package installation processing and messaging.
Definition ScreenInstallOverlay.h:10
void Init() override
This is called immediately after construction, to allow initializing after all derived classes exist.
Definition ScreenInstallOverlay.cpp:260
Class that holds a screen-full of Actors.
Definition Screen.h:64