mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-12 17:49:03 +00:00
13 lines
254 B
C++
13 lines
254 B
C++
#pragma once
|
|
|
|
#include "Web/ViteAssets.h"
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
namespace ui
|
|
{
|
|
std::unordered_map<std::string, UiFile> BuildUiFileLookup();
|
|
const char* GetMimeTypeForFileName(const std::string& fileName);
|
|
} // namespace ui
|