20 lines
294 B
C++
20 lines
294 B
C++
// Copyright (c) 2012-2021 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
|