25 lines
500 B
Factor
25 lines
500 B
Factor
! Copyright (C) 2006 Alex Chapman
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
REQUIRES: contrib/lazy-lists ;
|
|
|
|
PROVIDE: contrib/tetris
|
|
{ +files+ {
|
|
"tetris-colours.factor"
|
|
"tetromino.factor"
|
|
"tetris-piece.factor"
|
|
"tetris-board.factor"
|
|
"tetris.factor"
|
|
"tetris-gl.factor"
|
|
"tetris-gadget.factor"
|
|
} }
|
|
{ +tests+ {
|
|
"test/tetris-piece.factor"
|
|
"test/tetris-board.factor"
|
|
"test/tetris.factor"
|
|
} } ;
|
|
|
|
USE: tetris-gadget
|
|
|
|
MAIN: contrib/tetris tetris-window ;
|