blob: 2ce3ec7dbb7d1b279f2a1002b998db27875e58f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "../IFloatingWindowScript.h"
#include "api/Event.h"
#include <crepe/api/Script.h>
class EndGameSubScript : public IFloatingWindowScript {
public:
EndGameSubScript(const std::string & tag);
void init() override;
bool disable_all();
bool enable_all();
bool reset_timescale();
};
|