- Timestamp:
- Jun 12, 2006, 10:44:26 PM (18 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 10 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/Makefile.am
r8271 r8330 25 25 util/loading/factory.cc \ 26 26 util/loading/dynamic_loader.cc \ 27 \ 28 util/filesys/file.cc \ 29 util/filesys/directory.cc \ 30 \ 27 31 util/preferences.cc \ 28 32 util/threading.cc \ 29 util/file.cc \30 util/directory.cc \31 33 util/timer.cc \ 32 34 \ … … 49 51 util/executor/functor_list.h \ 50 52 \ 53 util/filesys/file.h \ 54 util/filesys/directory.h \ 55 \ 51 56 util/preferences.h \ 52 57 util/threading.h \ 53 util/file.h \54 util/directory.h \55 58 util/timer.h \ 56 59 \ -
trunk/src/lib/graphics/importer/bsp_file.cc
r8186 r8330 22 22 #include "bsp_tree_node.h" 23 23 #include <fstream> 24 #include "file.h" 24 #include "util/loading/resource_manager.h" 25 25 26 #include <sys/stat.h> 26 27 #include <string.h> … … 31 32 #include "base_object.h" 32 33 #include "vector.h" 33 #include "util/loading/resource_manager.h"34 34 #include "movie_player.h" 35 35 -
trunk/src/lib/parser/ini_parser/Makefile.am
r5944 r8330 1 INCLUDES=-I../../util 2 1 3 2 4 noinst_LIBRARIES = libIniParser.a -
trunk/src/lib/parser/ini_parser/ini_parser.h
r7661 r8330 11 11 #define PARSELINELENGHT 512 //!< how many chars to read at once 12 12 13 #include " src/lib/util/file.h"13 #include "filesys/file.h" 14 14 #include <list> 15 15 -
trunk/src/lib/shell/shell_completion_plugin.cc
r8276 r8330 25 25 #include "loading/resource_manager.h" 26 26 27 #include " directory.h"27 #include "filesys/directory.h" 28 28 #include "debug.h" 29 29 -
trunk/src/lib/util/loading/resource_manager.cc
r8316 r8330 17 17 18 18 #include "util/loading/resource_manager.h" 19 #include "file.h"20 19 #include "substring.h" 21 20 #include "debug.h" -
trunk/src/lib/util/loading/resource_manager.h
r7661 r8330 21 21 22 22 #include "base_object.h" 23 #include "file .h"23 #include "filesys/file.h" 24 24 25 25 #include "multi_type.h" -
trunk/src/orxonox.cc
r8316 r8330 32 32 #include "gui/qt/qt_gui.h" 33 33 34 #include "file.h"35 34 #include "parser/ini_parser/ini_parser.h" 36 35 #include "util/loading/game_loader.h" -
trunk/src/story_entities/simple_game_menu.cc
r8324 r8330 75 75 OrxGui::GLGuiHandler::getInstance()->activateCursor(); 76 76 OrxGui::GLGuiHandler::getInstance()->activate(); 77 OrxGui::GLGuiHandler::getInstance()->cursor()->loadTextureSequence(ResourceManager::getInstance()->getDataDir() + "/" + "maps/reap_mouse/reap_mouse_##. tif", 0, 49);77 OrxGui::GLGuiHandler::getInstance()->cursor()->loadTextureSequence(ResourceManager::getInstance()->getDataDir() + "/" + "maps/reap_mouse/reap_mouse_##.png", 0, 49); 78 78 ///// 79 79 -
trunk/src/story_entities/story_entity.cc
r7677 r8330 22 22 #include "story_entity.h" 23 23 24 #include "util/file.h"25 24 #include "util/loading/load_param.h" 26 25 #include "util/loading/resource_manager.h"
Note: See TracChangeset
for help on using the changeset viewer.