projects
/
xonotic
/
netradiant.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
radiant/build menu: reword Commandline as Command line
[xonotic/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