blob: 5a960df4506012e8f187ca456b9a48378d1df612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <crepe/api/Script.h>
#include "ZapperObject.h"
class ZapperScript : public crepe::Script {
public:
ZapperScript(const ZapperObject & zapper);
protected:
void init();
void frame_update(crepe::duration_t delta_time);
protected:
ZapperObject zapper;
};
|