Files
FlaxEngine/Source/Editor/Cooker/Platform/Linux/LinuxPlatformTools.h
2020-12-07 23:40:54 +01:00

25 lines
547 B
C++

// Copyright (c) 2012-2019 Wojciech Figat. All rights reserved.
#pragma once
#if PLATFORM_TOOLS_LINUX
#include "../../PlatformTools.h"
/// <summary>
/// The Linux platform support tools.
/// </summary>
class LinuxPlatformTools : public PlatformTools
{
public:
// [PlatformTools]
const Char* GetDisplayName() const override;
const Char* GetName() const override;
PlatformType GetPlatform() const override;
ArchitectureType GetArchitecture() const override;
bool OnDeployBinaries(CookingData& data) override;
};
#endif