Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8246


Ignore:
Timestamp:
Apr 18, 2011, 12:34:22 PM (13 years ago)
Author:
dafrick
Message:

A place to start for tetris.

Location:
code/branches/tetris
Files:
8 added
2 deleted
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • code/branches/tetris/src/modules/CMakeLists.txt

    r7401 r8246  
    3333ADD_SUBDIRECTORY(pong)
    3434ADD_SUBDIRECTORY(questsystem)
     35ADD_SUBDIRECTORY(tetris)
    3536ADD_SUBDIRECTORY(weapons)
  • code/branches/tetris/src/modules/pong/PongBat.h

    r8106 r8246  
    100100                { this->length_ = length; }
    101101            /**
    102             @brief get the length of the bat.
     102            @brief Get the length of the bat.
    103103            @return Returns the length of the bat (in z-direction) as percentage of the height of the playing field.
    104104            */
  • 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
     1SET_SOURCE_FILES(TETRIS_SRC_FILES
     2  Tetris.cc
     3  TetrisCenterpoint.cc
     4  TetrisStone.cc
    115)
    126
    13 ORXONOX_ADD_LIBRARY(pong
     7ORXONOX_ADD_LIBRARY(tetris
    148  MODULE
    159  FIND_HEADER_FILES
    1610  LINK_LIBRARIES
    1711    orxonox
    18     overlays
    19   SOURCE_FILES ${PONG_SRC_FILES}
     12  SOURCE_FILES ${TETRIS_SRC_FILES}
    2013)
Note: See TracChangeset for help on using the changeset viewer.