15 lines
327 B
Factor
15 lines
327 B
Factor
|
PROVIDE: demos/nehe
|
||
|
{
|
||
|
+files+ {
|
||
|
"nehe-utils.factor"
|
||
|
"nehe2.factor"
|
||
|
"nehe3.factor"
|
||
|
}
|
||
|
} ;
|
||
|
|
||
|
USING: kernel gadgets nehe sequences gadgets-buttons ;
|
||
|
|
||
|
MAIN: demos/nehe
|
||
|
{ { "Nehe 2" [ drop run2 ] } { "Nehe 3" [ drop run3 ] } }
|
||
|
[ first2 <bevel-button> ] map make-pile
|
||
|
"Nehe examples" open-titled-window ;
|