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