mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-15 17:27:57 -05:00
Unlinker: Make parsing specified command line arguments its own class
This commit is contained in:
@ -7,6 +7,21 @@
|
||||
class ObjWriting
|
||||
{
|
||||
public:
|
||||
static class Configuration_t
|
||||
{
|
||||
public:
|
||||
enum class ImageOutputFormat_e
|
||||
{
|
||||
DDS,
|
||||
IWI
|
||||
};
|
||||
|
||||
bool Verbose = false;
|
||||
ImageOutputFormat_e ImageOutputFormat = ImageOutputFormat_e::DDS;
|
||||
bool MinimalZoneFileOutput = false;
|
||||
|
||||
} Configuration;
|
||||
|
||||
static bool DumpZone(Zone* zone, const std::string& basePath);
|
||||
static bool WriteZoneDefinition(Zone* zone, FileAPI::File* file, bool minimalistic);
|
||||
static bool WriteZoneDefinition(Zone* zone, FileAPI::File* file);
|
||||
};
|
||||
|
Reference in New Issue
Block a user