#pragma once #include "Host/HostFwd.h" #include #include #include #include #ifndef NOMINMAX #define NOMINMAX #endif #include namespace XCEngine::UI::Editor::App::Internal { bool LoadEmbeddedPngBytes( UINT resourceId, const std::uint8_t*& outData, std::size_t& outSize, std::string& outError); bool LoadEmbeddedPngTexture( Host::TextureHost& renderer, UINT resourceId, ::XCEngine::UI::UITextureHandle& outTexture, std::string& outError); } // namespace XCEngine::UI::Editor::App::Internal