// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once #if PLATFORM_GDK /// /// GDK platform specific implementation of the input system parts. /// class GDKInput { public: static void Init(); static void Exit(); static void Update(); }; #endif