mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
25 lines
425 B
C++
25 lines
425 B
C++
#pragma once
|
|
|
|
#include "Zone/Zone.h"
|
|
#include <string>
|
|
|
|
class ObjWriting
|
|
{
|
|
public:
|
|
static class Configuration_t
|
|
{
|
|
public:
|
|
enum class ImageOutputFormat_e
|
|
{
|
|
DDS,
|
|
IWI
|
|
};
|
|
|
|
bool Verbose = false;
|
|
ImageOutputFormat_e ImageOutputFormat = ImageOutputFormat_e::DDS;
|
|
|
|
} Configuration;
|
|
|
|
static bool DumpZone(Zone* zone, const std::string& basePath);
|
|
};
|