Jump to content

Command Ref: App


Recommended Posts

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

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...