summaryrefslogtreecommitdiff
path: root/plugins/hello_gdextension/src/main/cpp/gdexample.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hello_gdextension/src/main/cpp/gdexample.h')
-rw-r--r--plugins/hello_gdextension/src/main/cpp/gdexample.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/hello_gdextension/src/main/cpp/gdexample.h b/plugins/hello_gdextension/src/main/cpp/gdexample.h
new file mode 100644
index 0000000..6add085
--- /dev/null
+++ b/plugins/hello_gdextension/src/main/cpp/gdexample.h
@@ -0,0 +1,25 @@
+#ifndef GDEXAMPLE_H
+#define GDEXAMPLE_H
+
+#include <godot_cpp/classes/sprite2d.hpp>
+
+namespace godot {
+
+class GDExample : public Sprite2D {
+ GDCLASS(GDExample, Sprite2D)
+
+private:
+ double time_passed;
+
+protected:
+ static void _bind_methods();
+
+public:
+ GDExample();
+ ~GDExample();
+
+ void _process(double delta) override;
+};
+}
+
+#endif // GDEXAMPLE_H