Changeset 8246 for code/branches/tetris/src/modules
- Timestamp:
- Apr 18, 2011, 12:34:22 PM (14 years ago)
- Location:
- code/branches/tetris/src/modules
- Files:
-
- 7 added
- 2 deleted
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tetris/src/modules/CMakeLists.txt
r7401 r8246 33 33 ADD_SUBDIRECTORY(pong) 34 34 ADD_SUBDIRECTORY(questsystem) 35 ADD_SUBDIRECTORY(tetris) 35 36 ADD_SUBDIRECTORY(weapons) -
code/branches/tetris/src/modules/pong/PongBat.h
r8106 r8246 100 100 { this->length_ = length; } 101 101 /** 102 @brief get the length of the bat.102 @brief Get the length of the bat. 103 103 @return Returns the length of the bat (in z-direction) as percentage of the height of the playing field. 104 104 */ -
code/branches/tetris/src/modules/tetris/CMakeLists.txt
r7163 r8246 1 SET_SOURCE_FILES(PONG_SRC_FILES 2 COMPILATION_BEGIN PongCompilation.cc 3 Pong.cc 4 PongAI.cc 5 PongBall.cc 6 PongBat.cc 7 PongBot.cc 8 PongCenterpoint.cc 9 PongScore.cc 10 COMPILATION_END 1 SET_SOURCE_FILES(TETRIS_SRC_FILES 2 Tetris.cc 3 TetrisCenterpoint.cc 4 TetrisStone.cc 11 5 ) 12 6 13 ORXONOX_ADD_LIBRARY( pong7 ORXONOX_ADD_LIBRARY(tetris 14 8 MODULE 15 9 FIND_HEADER_FILES 16 10 LINK_LIBRARIES 17 11 orxonox 18 overlays 19 SOURCE_FILES ${PONG_SRC_FILES} 12 SOURCE_FILES ${TETRIS_SRC_FILES} 20 13 )
Note: See TracChangeset
for help on using the changeset viewer.