TDME2 1.9.121
SceneWriter.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9
12
13using std::string;
14
18
19/**
20 * Scene writer
21 * @author Andreas Drewke
22 * @version $Id$
23 */
25{
26
27public:
28 /**
29 * Writes a scene
30 * @param pathName path name
31 * @param fileName file name
32 * @param scene scene
33 * @throws tdme::os::filesystem::FileSystemException
34 * @throws tdme::engine::fileio::models::ModelFileIOException
35 */
36 static void write(const string& pathName, const string& fileName, Scene* scene);
37
38};
static void write(const string &pathName, const string &fileName, Scene *scene)
Writes a scene.
Definition: SceneWriter.cpp:56
Scene definition.
Definition: Scene.h:41