]> git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/brushexport/export.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / brushexport / export.h
1 #ifndef EXPORT_H
2 #define EXPORT_H
3
4 #include <set>
5 #include <string>
6
7 enum collapsemode {
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,
14                      bool limitMatNames, bool objects);
15
16 #endif