summaryrefslogtreecommitdiff
path: root/plugins/hello_gdextension/src/main/cpp/gdexample.h
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@meta.com>2023-08-17 11:49:20 -0700
committerGitHub <noreply@github.com>2023-08-17 11:49:20 -0700
commit1f04b16320add64cea98e33fe541b426ff321713 (patch)
tree741a6563c1795437c0ad5b80c6121b5476861361 /plugins/hello_gdextension/src/main/cpp/gdexample.h
parente61f1555b696b62152787d0fee14435325aee62b (diff)
parent37e27e3db22c0b33d098a0ac1fb2dfe8861be0fb (diff)
downloadgodot-android-samples-1f04b16320add64cea98e33fe541b426ff321713.tar.gz
godot-android-samples-1f04b16320add64cea98e33fe541b426ff321713.tar.bz2
godot-android-samples-1f04b16320add64cea98e33fe541b426ff321713.zip
Merge pull request #2 from m4gr3d/add_gdextension_plugin_sample
Add an Android GDExtension plugin sample
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