Files
dorayme/source/include/worldbuilder.h
Godzil a82b67faa4 Working on worlds.
It's currently crashing.
2020-02-19 18:05:48 +00:00

30 lines
490 B
C++

/*
* DoRayMe - a quick and dirty Raytracer
* Worldbuilder header
*
* Created by Manoël Trapier
* Copyright (c) 2020 986-Studio.
*
*/
#ifndef DORAYME_WORLDBUILDER_H
#define DORAYME_WORLDBUILDER_H
#include <world.h>
/* Let's keep a single header for now, will see later */
class DefaultWorld : public World
{
public:
DefaultWorld();
};
/* Not implemented yet */
class Hw3File : public World
{
public:
Hw3File(const char *filename);
};
#endif //DORAYME_WORLDBUILDER_H