mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 15:23:37 +00:00
24 lines
442 B
C++
24 lines
442 B
C++
#pragma once
|
|
#include "../Screen.h"
|
|
class Options;
|
|
|
|
class VideoSettingsScreen : public Screen {
|
|
private:
|
|
Screen* lastScreen;
|
|
|
|
protected:
|
|
std::wstring title;
|
|
|
|
private:
|
|
Options* options;
|
|
|
|
public:
|
|
VideoSettingsScreen(Screen* lastScreen, Options* options);
|
|
virtual void init() override;
|
|
|
|
protected:
|
|
virtual void buttonClicked(Button* button) override;
|
|
|
|
public:
|
|
virtual void render(int xm, int ym, float a) override;
|
|
}; |