/* * 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 /* 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 */