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

#include "IShowScript.h"

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