12 lines
223 B
C++
12 lines
223 B
C++
#ifndef SCENE_H
|
|
#include SCENE_H
|
|
#include "camera.cuh"
|
|
#include "render_object.cuh"
|
|
|
|
//for now we only neeed once scene, later we'll expand this to just be a virtual template
|
|
template <class T> class scene {
|
|
|
|
|
|
}
|
|
|
|
#endif |