mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-22 21:02:07 +00:00
13 lines
259 B
C++
13 lines
259 B
C++
#pragma once
|
|
|
|
#include "SearchPath/ISearchPath.h"
|
|
#include "Utils/MemoryManager.h"
|
|
#include "Game/T6/T6.h"
|
|
using namespace T6;
|
|
|
|
class CustomMapInfo
|
|
{
|
|
public:
|
|
static customMapInfo* createCustomMapInfo(std::string& projectName, ISearchPath& searchPath);
|
|
};
|