GDExtensionTemplate/gdextension/src/test.h

16 lines
206 B
C
Raw Normal View History

#ifndef TEST_H
#define TEST_H
#include <godot_cpp/classes/node3d.hpp>
using namespace godot;
class Test : public Node3D {
GDCLASS(Test, Node3D);
protected:
static void _bind_methods() {}
};
#endif