Could someone post all the basic drawing commands?
Just to deal with shapes and such. Is there any way to draw unfilled rectangles and circles?
Just to deal with shapes and such. Is there any way to draw unfilled rectangles and circles?
' ----------------------------------------------------------------------------- ' ccDrawRectOutline ' ----------------------------------------------------------------------------- Function ccDrawRectOutline(x,y,w,h) DrawLine(x,y,x+w,y,0) DrawLine(x+w,y,x+w,y+h,0) DrawLine(x+w,y+h,x,y+h,0) DrawLine(x,y+h,x,y,0) End Function