2023-03-08 22:46:49 +01:00
|
|
|
#ifndef TEST_HPP
|
|
|
|
#define TEST_HPP
|
2023-02-12 12:49:37 +01:00
|
|
|
|
|
|
|
#include <godot_cpp/classes/node3d.hpp>
|
|
|
|
|
|
|
|
using namespace godot;
|
|
|
|
|
|
|
|
class Test : public Node3D {
|
2023-02-12 14:04:31 +01:00
|
|
|
GDCLASS(Test, Node3D);
|
2023-02-12 12:49:37 +01:00
|
|
|
|
2023-02-16 21:57:27 +01:00
|
|
|
public:
|
|
|
|
void start_test();
|
|
|
|
|
2023-02-12 12:49:37 +01:00
|
|
|
protected:
|
2023-02-16 21:57:27 +01:00
|
|
|
static void _bind_methods();
|
2023-02-12 12:49:37 +01:00
|
|
|
};
|
|
|
|
#endif
|