mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
Rename AssetLoading from Linker to ZoneCreation
This commit is contained in:
19
src/Linker/ZoneCreation/ZoneCreationContext.h
Normal file
19
src/Linker/ZoneCreation/ZoneCreationContext.h
Normal file
@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
|
||||
#include "SearchPath/ISearchPath.h"
|
||||
#include "Obj/Gdt/Gdt.h"
|
||||
|
||||
class ZoneCreationContext
|
||||
{
|
||||
public:
|
||||
ISearchPath* m_asset_search_path;
|
||||
std::string m_zone_name;
|
||||
std::string m_game_name;
|
||||
std::vector<std::unique_ptr<Gdt>> m_gdt_files;
|
||||
|
||||
ZoneCreationContext();
|
||||
ZoneCreationContext(std::string zoneName, ISearchPath* assetSearchPath);
|
||||
};
|
Reference in New Issue
Block a user