aboutsummaryrefslogtreecommitdiff
path: root/src/example/StartGameScript.h
blob: ad62e1aa8bdc530f08f1bfe7b5e3f1613f3b03e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <crepe/api/Script.h>

class StartGameScript : public crepe::Script {
public:
	void fixed_update(crepe::duration_t dt);

private:
	bool created_hole = false;
	bool took_jetpack = false;
};