Roland Posted April 9, 2014 Share Posted April 9, 2014 http://www.leadwerks.com/werkspace/page/documentation/_/command-reference/app/ Members static Window* window static Context* context static World* world static Camera* camera Those are not static in the LE3.1 template #pragma once #include "Leadwerks.h" using namespace Leadwerks; class App { public: Leadwerks::Window* window; Context* context; World* world; Camera* camera; App(); virtual ~App(); virtual bool Start(); virtual bool Loop(); }; Roland Strålberg Website: https://rstralberg.com Link to comment Share on other sites More sharing options...
Josh Posted April 9, 2014 Share Posted April 9, 2014 Thanks! My job is to make tools you love, with the features you want, and performance you can't live without. Link to comment Share on other sites More sharing options...
Recommended Posts