mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-21 03:45:38 +00:00
14 lines
231 B
C++
14 lines
231 B
C++
#pragma once
|
|
|
|
class ObjLoading
|
|
{
|
|
public:
|
|
static class Configuration_t
|
|
{
|
|
public:
|
|
bool Verbose = false;
|
|
bool MenuPermissiveParsing = false;
|
|
bool MenuNoOptimization = false;
|
|
} Configuration;
|
|
};
|