worldbuilder.h 494 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * DoRayMe - a quick and dirty Raytracer
  3. * Worldbuilder header
  4. *
  5. * Created by Manoël Trapier
  6. * Copyright (c) 2020 986-Studio.
  7. *
  8. */
  9. #ifndef DORAYME_WORLDBUILDER_H
  10. #define DORAYME_WORLDBUILDER_H
  11. #include <world.h>
  12. /* Let's keep a single header for now, will see later */
  13. class DefaultWorld : public World
  14. {
  15. public:
  16. DefaultWorld();
  17. };
  18. /* Not implemented yet */
  19. class Hw3File : public World
  20. {
  21. public:
  22. Hw3File(const char *filename);
  23. };
  24. #endif /* DORAYME_WORLDBUILDER_H */