mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-12-02 08:32:37 +00:00
16 lines
273 B
C
16 lines
273 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, const std::string& path);
|
||
|
|
||
|
#endif
|