Changeset 1647
- Timestamp:
- Jul 27, 2008, 12:34:31 PM (16 years ago)
- Location:
- code/branches/gui
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/Script.h
r1625 r1647 28 28 29 29 /** 30 @file script.h30 @file 31 31 @brief Representation of an interface to lua 32 32 @author Benjamin Knecht <beni_at_orxonox.net> … … 47 47 namespace orxonox // tolua_export 48 48 { // tolua_export 49 50 class _CoreExport Script // tolua_export 51 { // tolua_export 49 class _CoreExport Script 50 /* 51 class Script { // tolua_export 52 */ 53 { 52 54 struct LoadS { 53 55 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" 2 2 $cfile "../../src/core/CommandExecutor.h" -
code/branches/gui/src/orxonox/gui/GUIManager.h
r1646 r1647 73 73 74 74 bool initialise(); 75 void tick(float dt); 75 void tick(float dt) 76 { 77 assert(guiSystem_); 78 guiSystem_->injectTimePulse(dt); 79 } 76 80 void showGUI(const std::string& name, Ogre::SceneManager* sceneManager);// bool showBackground); // tolua_export 77 81 void _hideGUI(); // tolua_export … … 131 135 static GUIManager* singletonRef_s; 132 136 }; // tolua_export 133 134 inline void GUIManager::tick(float dt)135 {136 assert(guiSystem_);137 guiSystem_->injectTimePulse(dt);138 }139 137 } // tolua_export 140 138 -
code/branches/gui/visual_studio/vc8/core.vcproj
r1638 r1647 205 205 Description="Generating tolua bind files..." 206 206 CommandLine=""$(OutDir)\tolua_app_d.exe" -n Core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg
" 207 AdditionalDependencies="$(RootDir)\src\core\Script.h; $(RootDir)\src\core\CommandExecutor.h" 207 208 Outputs="$(RootDir)\src\core\tolua\tolua_bind.cc; $(RootDir)\src\core\tolua\tolua_bind.h" 208 209 /> … … 419 420 </File> 420 421 <File 421 RelativePath="..\..\src\core\Script_clean.h"422 >423 </File>424 <File425 422 RelativePath="..\..\src\core\SignalHandler.h" 426 423 >
Note: See TracChangeset
for help on using the changeset viewer.