From 37e27e3db22c0b33d098a0ac1fb2dfe8861be0fb Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Thu, 17 Aug 2023 07:32:10 -0700 Subject: Add an Android GDExtension plugin sample This sample shows how to integrate gdextension capabilities with Android java/kotlin code by leveraging JNI. --- plugins/hello_gdextension/src/main/cpp/gdexample.h | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 plugins/hello_gdextension/src/main/cpp/gdexample.h (limited to 'plugins/hello_gdextension/src/main/cpp/gdexample.h') 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 + +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 -- cgit v1.2.3