diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2022-05-30 22:13:49 +0100 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2022-05-31 17:11:05 +0100 |
commit | 2afef001e702046378a02fa887dbb361f39c7b6e (patch) | |
tree | 2dac64b759e489b32055ce95608d1783c1f805c7 /platform/android/export/export_plugin.h | |
parent | a837accc5d058e4eec29f4d854da8cb9f55a97cf (diff) | |
download | redot-engine-2afef001e702046378a02fa887dbb361f39c7b6e.tar.gz |
Cleanup Android C++ code
Diffstat (limited to 'platform/android/export/export_plugin.h')
-rw-r--r-- | platform/android/export/export_plugin.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/android/export/export_plugin.h b/platform/android/export/export_plugin.h index e828710b97..eeb5aae0f1 100644 --- a/platform/android/export/export_plugin.h +++ b/platform/android/export/export_plugin.h @@ -28,6 +28,9 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ +#ifndef ANDROID_EXPORT_PLUGIN_H +#define ANDROID_EXPORT_PLUGIN_H + #include "godot_plugin_config.h" #include "core/io/zip_io.h" @@ -234,3 +237,5 @@ public: ~EditorExportPlatformAndroid(); }; + +#endif // ANDROID_EXPORT_PLUGIN_H |