Lugdunum  0.1.0
Scene.inl
Go to the documentation of this file.
1 inline void Scene::setSkyBox(Resource::SharedPtr<Render::SkyBox> skyBox) {
2  _skyBox = skyBox;
3 }
4 
5 inline Node& Scene::getRoot() {
6  return _root;
7 }
8 
9 inline const Node& Scene::getRoot() const {
10  return _root;
11 }
12 
13 
14 inline const Resource::SharedPtr<Render::SkyBox> Scene::getSkyBox() const {
15  return _skyBox;
16 }
Dummy class for a shared pointer.
Definition: Resource.hpp:66