// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved. #pragma once #if PLATFORM_LINUX #include "Engine/Platform/Types.h" /// /// Linux platform specific implementation of the input system parts. /// class LinuxInput { public: static void Init(); }; #endif