TGC Codebase Backup



Target by Slayer93

2nd Sep 2004 21:23
Summary

It is a 2d target you move around



Description

It is a 2d target you move around



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    x=320
y=240

do
cls
if upkey()=1 then y=y-1
if downkey()=1 then y=y+1
if leftkey()=1 then x=x-1
if rightkey()=1 then x=x+1
circle x,y,20
line x,y,x,y
loop