mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
0c07d03e26
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@172 8a3a26a2-13c4-0310-b231-cf6edde360e5
15 lines
304 B
C++
15 lines
304 B
C++
#ifndef EXPORT_H
|
|
#define EXPORT_H
|
|
#include <set>
|
|
#include <string>
|
|
|
|
enum collapsemode
|
|
{
|
|
COLLAPSE_ALL,
|
|
COLLAPSE_BY_MATERIAL,
|
|
COLLAPSE_NONE
|
|
};
|
|
|
|
bool ExportSelection(const std::set<std::string>& ignorelist, collapsemode m, bool exmat, const std::string& path, bool limitMatNames, bool objects);
|
|
|
|
#endif
|