mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
17 lines
246 B
C++
17 lines
246 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "Obj/Gdt/GdtStream.h"
|
|
#include "Zone/Zone.h"
|
|
|
|
class AssetDumpingContext
|
|
{
|
|
public:
|
|
Zone* m_zone;
|
|
std::string m_base_path;
|
|
std::unique_ptr<GdtOutputStream> m_gdt;
|
|
|
|
AssetDumpingContext();
|
|
};
|