blob: 04b293300eeaa9e3bf6242f0f3d64a5ab746b8c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <crepe/api/Script.h>
class HallwayScript : public crepe::Script {
public:
void fixed_update(crepe::duration_t dt);
private:
float start_x = 1200;
const float lenght = 3000;
int current_sector = 2;
};
|