home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Graphics
/
graphics-16000.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
exbas.arj
/
FGDOC
/
EXAMPLES
/
BASIC
/
14-12.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1993-09-30
|
358 b
|
22 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
Status = FGinitjoy(1)
Status = FGinitjoy(2)
WHILE INKEY$ = ""
X = FGgetxjoy(1)
Y = FGgetyjoy(1)
B = FGbutton(1)
PRINT USING "1: ### ### #"; X, Y, B
X = FGgetxjoy(2)
Y = FGgetyjoy(2)
B = FGbutton(2)
PRINT USING "2: ### ### #"; X, Y, B
PRINT
FGwaitfor 9
WEND
END