]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - misc/mediasource/extra/netradiant-src/contrib/brushexport/export.h
Include netRadiant source in this GIT
[voretournament/voretournament.git] / misc / mediasource / extra / netradiant-src / contrib / brushexport / export.h
1 #ifndef EXPORT_H
2 #define EXPORT_H
3 #include <set>
4 #include <string>
5
6 enum collapsemode
7 {
8         COLLAPSE_ALL,
9         COLLAPSE_BY_MATERIAL,
10         COLLAPSE_NONE
11 };
12
13 bool ExportSelection(const std::set<std::string>& ignorelist, collapsemode m, bool exmat, const std::string& path, bool limitMatNames, bool objects);
14
15 #endif