GLBasic forum

Main forum => GLBasic - en => Topic started by: PeeJay on 2008-Feb-03

Title: Suggestion - comma separation in Types
Post by: PeeJay on 2008-Feb-03
This one should be easy - to be able to have Type elements separated by commas, rather than each on a new line, thus:
Code (glbasic) Select
TYPE enemy
sort,x,y,minx,maxx,miny,maxy,speed
ENDTYPE
Title: Suggestion - comma separation in Types
Post by: AndyH on 2008-Feb-03
Did you know ...

Code (glbasic) Select
TYPE enemy
sort; x; y; minx; maxx; miny; maxy; speed
ENDTYPE
Can use ; to separate code on a single line.
Title: Suggestion - comma separation in Types
Post by: PeeJay on 2008-Feb-03
ah, no I didn't - thanks Andy :)