]> icculus.org git repositories - divverent/netradiant.git/blob - contrib/brushexport/export.h
Merge branch 'master' of ssh://git.xonotic.org/netradiant
[divverent/netradiant.git] / 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