blob: 240ab7c6a54c11d207f5eac11d025428f841dfe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <crepe/api/Script.h>
class PlayerEndScript : public crepe::Script {
public:
void init();
void fixed_update(crepe::duration_t dt);
private:
int jump = 0;
};
|