// Copyright (C) 2009-present, Panagiotis Christopoulos Charitos and contributors. // All rights reserved. // Code licensed under the BSD License. // http://www.anki3d.org/LICENSE #pragma once #include #include #include namespace anki { /// Android input implementation class InputAndroid : public Input { public: Error initInternal(); void handleAndroidEvents(android_app* app, int32_t cmd); int handleAndroidInput(android_app* app, AInputEvent* event); }; } // end namespace anki