projects
/
xonotic
/
netradiant.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
- Updated UFA:Plugin (mattn2)
[xonotic/netradiant.git]
/
contrib
/
brushexport
/
export.h
1
#ifndef EXPORT_H
\r
2
#define EXPORT_H
\r
3
#include <set>
\r
4
#include <string>
\r
5
\r
6
enum collapsemode
\r
7
{
\r
8
COLLAPSE_ALL,
\r
9
COLLAPSE_BY_MATERIAL,
\r
10
COLLAPSE_NONE
\r
11
};
\r
12
\r
13
bool ExportSelection(const std::set<std::string>& ignorelist, collapsemode m, const std::string& path);
\r
14
\r
15
#endif
\r