Mac impl progress
This commit is contained in:
29
Source/Editor/Cooker/Platform/Mac/MacPlatformTools.h
Normal file
29
Source/Editor/Cooker/Platform/Mac/MacPlatformTools.h
Normal file
@@ -0,0 +1,29 @@
|
||||
// Copyright (c) 2012-2019 Wojciech Figat. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#if PLATFORM_TOOLS_MAC
|
||||
|
||||
#include "../../PlatformTools.h"
|
||||
|
||||
/// <summary>
|
||||
/// The Mac platform support tools.
|
||||
/// </summary>
|
||||
class MacPlatformTools : public PlatformTools
|
||||
{
|
||||
private:
|
||||
ArchitectureType _arch;
|
||||
|
||||
public:
|
||||
|
||||
MacPlatformTools(ArchitectureType arch);
|
||||
|
||||
// [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
|
||||
Reference in New Issue
Block a user