netradiant-custom/contrib/brushexport/export.h
2021-10-22 02:19:50 +03:00

17 lines
391 B
C++

#pragma once
#include <set>
#include <string>
enum collapsemode
{
COLLAPSE_ALL,
COLLAPSE_BY_MATERIAL,
COLLAPSE_NONE
};
typedef std::set<std::string, bool (*)( const std::string&, const std::string& )> StringSetWithLambda;
bool ExportSelection( const StringSetWithLambda& ignorelist, collapsemode m, bool exmat, const std::string& path, bool limitMatNames, bool objects, bool weld );