TGC Codebase Backup



hello world by chunks

12th Mar 2006 17:54
Summary

hello world with a dark basic touch



Description



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    Rem Project: hello
Rem Created: 12/03/2006 21:23:41

Rem ***** Main Source File *****
sync on
color backdrop 0
ink 200,200
text 0,0,"hello"
get image 1,0,0,40,40
cls
ink 200,200
text 0,0,"world"
get image 2,0,0,40,40
cls


   make object sphere 1,3
   make object sphere 2,3
  texture object 1,1
  texture object 2,2

 position object 1,-0.9,0,0
 position object 2,0.9,0,0




repeat

         yrotate object 1,z
         yrotate object 2,z1

inc z,1
dec z1,1

wait 1
sync
until mouseclick()=1