-- Main -- Free game by juaxix -- http://www.xixgames.com -- Copyright LGPL - 11/2011 function setup() cosmos = Cosmos() score = 0 watch("score") f=Font() frame=1 end function drawText(text,sw,sc,x,y) stroke(255, 255, 255, 255) noSmooth() strokeWidth(sw) lineCapMode(ROUND) scale(sc) f:drawstring(text, x, y) end function draw() background(0) cosmos:draw() if frame < 333 then frame = frame + 1 drawText("Game Start! ",2,1,50,HEIGHT/2) end end function touched(touch) cosmos:touched(touch) end