Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1647


Ignore:
Timestamp:
Jul 27, 2008, 12:34:31 PM (16 years ago)
Author:
rgrieder
Message:
  • removed Script_clean.h
Location:
code/branches/gui
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/core/Script.h

    r1625 r1647  
    2828
    2929/**
    30  @file  script.h
     30 @file
    3131 @brief Representation of an interface to lua
    3232 @author Benjamin Knecht <beni_at_orxonox.net>
     
    4747namespace orxonox // tolua_export
    4848{ // tolua_export
    49 
    50   class _CoreExport Script // tolua_export
    51   { // tolua_export
     49  class _CoreExport Script
     50  /*
     51  class Script { // tolua_export
     52  */
     53  {
    5254    struct LoadS {
    5355      const char *s;
  • code/branches/gui/src/core/tolua/tolua.pkg

    r1638 r1647  
    1 $cfile "../../src/core/Script_clean.h"
     1$cfile "../../src/core/Script.h"
    22$cfile "../../src/core/CommandExecutor.h"
  • code/branches/gui/src/orxonox/gui/GUIManager.h

    r1646 r1647  
    7373
    7474        bool initialise();
    75         void tick(float dt);
     75        void tick(float dt)
     76        {
     77            assert(guiSystem_);
     78            guiSystem_->injectTimePulse(dt);
     79        }
    7680        void showGUI(const std::string& name, Ogre::SceneManager* sceneManager);// bool showBackground); // tolua_export
    7781        void _hideGUI(); // tolua_export
     
    131135        static GUIManager*        singletonRef_s;
    132136    }; // tolua_export
    133 
    134     inline void GUIManager::tick(float dt)
    135     {
    136         assert(guiSystem_);
    137         guiSystem_->injectTimePulse(dt);
    138     }
    139137} // tolua_export
    140138
  • code/branches/gui/visual_studio/vc8/core.vcproj

    r1638 r1647  
    205205                                                        Description="Generating tolua bind files..."
    206206                                                        CommandLine="&quot;$(OutDir)\tolua_app_d.exe&quot; -n Core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg&#x0D;&#x0A;"
     207                                                        AdditionalDependencies="$(RootDir)\src\core\Script.h; $(RootDir)\src\core\CommandExecutor.h"
    207208                                                        Outputs="$(RootDir)\src\core\tolua\tolua_bind.cc; $(RootDir)\src\core\tolua\tolua_bind.h"
    208209                                                />
     
    419420                        </File>
    420421                        <File
    421                                 RelativePath="..\..\src\core\Script_clean.h"
    422                                 >
    423                         </File>
    424                         <File
    425422                                RelativePath="..\..\src\core\SignalHandler.h"
    426423                                >
Note: See TracChangeset for help on using the changeset viewer.