Files
FlaxEngine/Source/Engine/Platform/Linux/LinuxInput.h
2020-12-07 23:40:54 +01:00

20 lines
294 B
C++

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