27 lines
457 B
C++
Executable File
27 lines
457 B
C++
Executable File
|
|
#ifndef SCENE_H
|
|
#define SCENE_H SCENE_H
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
class Scene
|
|
{
|
|
public:
|
|
Scene(std::map<std::string, const char *> options,
|
|
const char * filename);
|
|
void render();
|
|
|
|
private:
|
|
void load(const char * filename);
|
|
|
|
int m_width;
|
|
int m_height;
|
|
int m_multisample_level;
|
|
std::string m_output_file_name;
|
|
bool m_verbose;
|
|
};
|
|
|
|
#endif
|
|
|