diff options
author | hecks <42101236+hecktest@users.noreply.github.com> | 2021-07-23 16:23:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 16:23:44 +0200 |
commit | 4ab3de3bab13c18bc0eed6bac565be3b80ebac10 (patch) | |
tree | 54274982be545669f28b2849f5f94aa1c37f39af /examples/01.HelloWorld_Android/android_tools.h | |
parent | dc2246dae75dda77d5a9be7f810930b5dd9b1ed8 (diff) | |
download | irrlicht-4ab3de3bab13c18bc0eed6bac565be3b80ebac10.tar.xz |
Delete lots of unused features (#48)
Diffstat (limited to 'examples/01.HelloWorld_Android/android_tools.h')
-rw-r--r-- | examples/01.HelloWorld_Android/android_tools.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/01.HelloWorld_Android/android_tools.h b/examples/01.HelloWorld_Android/android_tools.h deleted file mode 100644 index 2a3d66f..0000000 --- a/examples/01.HelloWorld_Android/android_tools.h +++ /dev/null @@ -1,33 +0,0 @@ -// This file is part of the "Irrlicht Engine". -// For conditions of distribution and use, see copyright notice in irrlicht.h - -#ifndef __IRR_ANDROID_TOOLS_H__ -#define __IRR_ANDROID_TOOLS_H__ - -#include <irrlicht.h> -#include <android_native_app_glue.h> - -namespace irr -{ -namespace android -{ - -struct SDisplayMetrics -{ - irr::s32 widthPixels; - irr::s32 heightPixels; - irr::f32 density; - irr::s32 densityDpi; - irr::f32 scaledDensity; - irr::f32 xdpi; - irr::f32 ydpi; -}; - -//! Access SDisplayMetrics -extern bool getDisplayMetrics(android_app* app, SDisplayMetrics & metrics); - -extern void setSoftInputVisibility(android_app* app, bool visible); -} -} - -#endif // __IRR_ANDROID_TOOLS_H__ |