diff options
Diffstat (limited to 'scene.hpp')
-rw-r--r-- | scene.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -9,6 +9,7 @@ struct Arena; struct Camera; +struct Lighting; struct Model_Instance; struct Model_Scene; struct World; @@ -24,6 +25,7 @@ struct C_Model { void update_scene( Model_Scene& ms, Device* dev, + const Lighting& lighting, const Camera& cam, World& w ); @@ -37,3 +39,4 @@ std::pair<Entity_Id, int> scene_pick( ); #endif + |