factor/demos/nehe/load.factor

15 lines
327 B
Factor
Raw Normal View History

2006-11-28 21:57:29 -05:00
PROVIDE: demos/nehe
2006-11-28 17:05:01 -05:00
{
+files+ {
"nehe-utils.factor"
"nehe2.factor"
"nehe3.factor"
}
} ;
USING: kernel gadgets nehe sequences gadgets-buttons ;
2006-11-28 21:57:29 -05:00
MAIN: demos/nehe
{ { "Nehe 2" [ drop run2 ] } { "Nehe 3" [ drop run3 ] } }
[ first2 <bevel-button> ] map make-pile
"Nehe examples" open-titled-window ;