aboutsummaryrefslogtreecommitdiff
path: root/game/mainmenu/ShowScript.h
blob: 5bfabccdd12db62abd05a25789befb714e81c4c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <crepe/api/Script.h>

class ShowScript : public crepe::Script {
public:
	void frame_update(crepe::duration_t delta_time) override;
	virtual const char* get_scene_name() const = 0;
private:
	float velocity = 20;
protected:
	bool transition = false;
};