Move LinuxInput to LinuxPlatform

This commit is contained in:
mafiesto4
2021-02-01 10:22:45 +01:00
parent ed10c15069
commit f2ac6a970c
3 changed files with 220 additions and 276 deletions

View File

@@ -1,19 +0,0 @@
// 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