Etterna 0.74.4
Loading...
Searching...
No Matches
ScreenExit.h
1#ifndef SCREEN_EXIT_H
2#define SCREEN_EXIT_H
3
4#include "Screen.h"
5
6class ScreenExit : public Screen
7{
8 public:
9 void Init() override;
10
11 private:
12 bool m_Exited = false;
13};
14
15#endif
Definition ScreenExit.h:7
void Init() override
This is called immediately after construction, to allow initializing after all derived classes exist.
Definition ScreenExit.cpp:16
Class that holds a screen-full of Actors.
Definition Screen.h:64