blob: 96f52f46be382547804c2cdc07875d5b87ac34c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <crepe/api/Script.h>
class ButtonScript : public crepe::Script {
public:
bool on_button_press(const crepe::ButtonPressEvent& e);
bool on_button_enter(const crepe::ButtonEnterEvent& e);
bool on_button_exit(const crepe::ButtonExitEvent& e);
void init();
};
|