2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-28 15:27:47 +00:00
Files
OpenAssetTools/src/ObjLoading/Game/T6/FontIcon/CsvLoaderFontIconT6.h
Jan Laupetin 46fb919a52 refactor: do not nest asset namespaces in game namespaces
* Duplicated namespace names are kind of annoying
2025-08-06 00:50:35 +02:00

14 lines
327 B
C++

#pragma once
#include "Asset/IAssetCreator.h"
#include "Game/T6/T6.h"
#include "SearchPath/ISearchPath.h"
#include "Utils/MemoryManager.h"
#include <memory>
namespace font_icon
{
std::unique_ptr<AssetCreator<T6::AssetFontIcon>> CreateCsvLoaderT6(MemoryManager& memory, ISearchPath& searchPath);
} // namespace font_icon