// Copyright (c) Wojciech Figat. All rights reserved. #pragma once #if PLATFORM_TOOLS_WEB #include "../../PlatformTools.h" /// /// The Web platform support tools. /// class WebPlatformTools : public PlatformTools { public: // [PlatformTools] const Char* GetDisplayName() const override; const Char* GetName() const override; PlatformType GetPlatform() const override; ArchitectureType GetArchitecture() const override; DotNetAOTModes UseAOT() const override; PixelFormat GetTextureFormat(CookingData& data, TextureBase* texture, PixelFormat format) override; bool IsNativeCodeFile(CookingData& data, const String& file) override; void OnBuildStarted(CookingData& data) override; bool OnPostProcess(CookingData& data) override; }; #endif