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