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

#include "../IFloatingWindowScript.h"

#include <crepe/api/Event.h>
#include <crepe/api/Script.h>

class CreditsSubScript : public IFloatingWindowScript {
public:
	CreditsSubScript(const std::string & tag);
	void init() override;
	bool disable_all();
	bool enable_all();
};