aboutsummaryrefslogtreecommitdiff
path: root/game/menus/ButtonNextMainMenuSubScript.h
blob: 06031117d7c249499a9372ff729a29190cf95794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "IButtonScript.h"

#include <crepe/api/Script.h>

class ButtonNextMainMenuSubScript : public IButtonScript {
public:
	void init() override;
	bool on_button_press(const crepe::ButtonPressEvent & e);

private:
	float velocity = 20;

protected:
	bool transition = false;
};