Files
FlaxEngine/Source/Editor/Cooker/Platform/Android/AndroidPlatformTools.h
2023-03-03 17:14:35 +01:00

38 lines
838 B
C++

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
#pragma once
#if PLATFORM_TOOLS_ANDROID
#include "../../PlatformTools.h"
/// <summary>
/// The Android platform support tools.
/// </summary>
class AndroidPlatformTools : public PlatformTools
{
private:
ArchitectureType _arch;
public:
AndroidPlatformTools(ArchitectureType arch)
: _arch(arch)
{
}
public:
// [PlatformTools]
const Char* GetDisplayName() const override;
const Char* GetName() const override;
PlatformType GetPlatform() const override;
ArchitectureType GetArchitecture() const override;
PixelFormat GetTextureFormat(CookingData& data, TextureBase* texture, PixelFormat format) override;
void OnBuildStarted(CookingData& data) override;
bool OnPostProcess(CookingData& data) override;
};
#endif