Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DocumentExporter.h « collada « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a0c292a3ddb81e715997ff373cb63ac4380a65c (plain)
1
2
3
4
5
6
7
8
struct Scene;

class DocumentExporter
{
 public:
	void exportCurrentScene(Scene *sce, const char* filename);
	void exportScenes(const char* filename);
};