blob: 5b0b3a102e98b36e2c655db9dacb078175911899 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <crepe/api/Script.h>
class AlertScript : public crepe::Script {
private:
bool has_alert = false;
public:
void fixed_update(crepe::duration_t dt);
};
|