factor/contrib/tetris/load.factor

25 lines
500 B
Factor
Raw Normal View History

! Copyright (C) 2006 Alex Chapman
! See http://factorcode.org/license.txt for BSD license.
REQUIRES: contrib/lazy-lists ;
2006-10-21 02:40:38 -04:00
PROVIDE: contrib/tetris
{ +files+ {
"tetris-colours.factor"
"tetromino.factor"
"tetris-piece.factor"
"tetris-board.factor"
"tetris.factor"
"tetris-gl.factor"
"tetris-gadget.factor"
2006-10-21 02:40:38 -04:00
} }
{ +tests+ {
"test/tetris-piece.factor"
"test/tetris-board.factor"
"test/tetris.factor"
} } ;
2006-10-19 22:41:20 -04:00
2006-10-19 23:02:24 -04:00
USE: tetris-gadget
2006-10-19 22:41:20 -04:00
MAIN: contrib/tetris tetris-window ;