aboutsummaryrefslogtreecommitdiff
path: root/game/EndGameScript.h
blob: 980dff502bf05ffd8b4efc9baf71fc9f0bfa462c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <crepe/api/Script.h>

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

private:
	int jump = 0;
};