aboutsummaryrefslogtreecommitdiff
path: root/game/mainmenu/ShowStartScript.h
blob: 4d8d894f1a5b0b0e62c516fc9429c66de4baac73 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "ShowScript.h"

class ShowStartScript : public ShowScript {
public:
	void init() override;
	void fixed_update(crepe::duration_t dt) override;
	const char* get_scene_name() const override;
};