aboutsummaryrefslogtreecommitdiff
path: root/game/menus/shop/ButtonBuySelectBulletScript.h
blob: 86de0acd070fac414c935d5fd08234b930f16ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "../IButtonScript.h"

#include <crepe/api/Script.h>

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

protected:
	bool transition = false;
};