Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 3, 2008, 12:20:36 AM (16 years ago)
Author:
rgrieder
Message:
  • moved Tickable to objects again
  • network, audio and core now have their own tick routine
  • Sequence is defined in Orxonox.cc
File:
1 moved

Legend:

Unmodified
Added
Removed
  • code/branches/input/src/core/Core.h

    r1510 r1524  
    2828
    2929/**
    30     @file CoreSettings.h
    31     @brief Definition of the CoreSettings class.
     30    @file Core.h
     31    @brief Definition of the Core class.
    3232
    33     The CoreSettings class is a singleton, only used to configure some variables
     33    The Core class is a singleton, only used to configure some variables
    3434    in the core through the config-file.
    3535*/
     
    4545namespace orxonox
    4646{
    47     //! The CoreSettings class is a singleton, only used to configure some config-values.
    48     class _CoreExport CoreSettings : public OrxonoxClass
     47    //! The Core class is a singleton, only used to configure some config-values.
     48    class _CoreExport Core : public OrxonoxClass
    4949    {
    5050        public:
    51             static CoreSettings& getInstance();
     51            static Core& getInstance();
    5252            static bool& isCreatingCoreSettings();
    5353            void setConfigValues();
     
    5858            static void resetLanguage();
    5959
     60            static void tick(float dt);
     61
    6062        private:
    6163            void resetLanguageIntern();
    6264
    63             CoreSettings();
    64             CoreSettings(const CoreSettings& other);
    65             virtual ~CoreSettings();
     65            Core();
     66            Core(const Core& other);
     67            virtual ~Core();
    6668
    6769            int softDebugLevel_;                            //!< The debug level
Note: See TracChangeset for help on using the changeset viewer.