?update ( tetris -- )


Vocabulary
tetris.game

Definition
USING: accessors kernel ;

IN: tetris.game

: ?update ( tetris -- )
dup [ paused?>> ] [ running?>> not ] bi or
[ drop ] [ update ] if ;