26 lines
408 B
C++
26 lines
408 B
C++
|
|
#include "Scene.h"
|
|
#include <string>
|
|
#include <map>
|
|
using namespace std;
|
|
|
|
Scene::Scene(map<string, const char *> options,
|
|
const char * filename)
|
|
{
|
|
m_width = 800;
|
|
m_height = 600;
|
|
m_multisample_level = 1;
|
|
m_output_file_name = "fart.bmp";
|
|
m_verbose = false;
|
|
|
|
load(filename);
|
|
}
|
|
|
|
void Scene::load(const char * filename)
|
|
{
|
|
}
|
|
|
|
void Scene::render()
|
|
{
|
|
}
|