blob: 28fe95bc3980315b1459e6ee17d1b577c35c9f6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "IButtonScript.h"
#include "IShowScript.h"
class ShowPreviewScript : public IShowScript, public IButtonScript {
public:
void init() override;
bool on_button_press(const crepe::ButtonPressEvent& e);
const char* get_scene_name() const override;
};
|