home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Game Programming for Teens (2nd Edition)
/
3DGPFT2E.iso
/
Source
/
Chapter03
/
demo03-04.bb
< prev
next >
Wrap
Text File
|
2009-01-20
|
222b
|
9 lines
;demo03-04.bb - Waits for a key and then exits
Graphics 640,480,0,2
Text 0,0, "This program is worthless."
Text 0,12,"Press escape to exit."
Flip
;Wait until user presses 1 to Escape
While Not KeyDown(1)
Wend
End