Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4554 in orxonox.OLD for orxonox/trunk/src/subprojects/framework.h


Ignore:
Timestamp:
Jun 8, 2005, 1:36:16 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: some spaces…. :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/subprojects/framework.h

    r4546 r4554  
    11#ifndef _FRAMEWORK_H
    22#define _FRAMEWORK_H
    3  
     3
    44#include "vector.h"
    55#include "glincl.h"
     
    99#ifdef GUI_MODULE
    1010#include "gui_gtk.h"
    11 #endif 
     11#endif
    1212
    1313#define DATA_DIRECTORY "~/orxonox/repos/trunk/data/"
     
    2020  Framework();
    2121  static Framework* singletonRef;
    22  
     22
    2323  Camera* camera;
    24  
     24
    2525  bool isFinished;
    2626
     
    3030  Uint32 lastFrame;
    3131  Uint32 currFrame;
    32    
     32
    3333  Uint8* keys;        // This variable will be used in the keyboard routine
    3434  bool mouseDown[MOUSE_BUTTON_COUNT];
    3535
    3636 public:
    37   ~Framework(); 
    38  
     37  ~Framework();
     38
    3939  /** \returns a Pointer to the only object of this Class */
    4040  inline static Framework* getInstance(void) { if (!singletonRef) singletonRef = new Framework();  return singletonRef; };
     
    4848  void moduleTick(float dt);
    4949  void moduleDraw(void) const;
    50  
     50
    5151  void moduleHelp(void) const;
    5252
Note: See TracChangeset for help on using the changeset viewer.