Suggestion - comma separation in Types

Previous topic - Next topic

PeeJay

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
www.peejays-remakes.co.uk
For games, remakes, and GL Basic Tutorials
Artificial Intelligence is no match for Natural Stupidity

AndyH

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.

PeeJay

ah, no I didn't - thanks Andy :)
www.peejays-remakes.co.uk
For games, remakes, and GL Basic Tutorials
Artificial Intelligence is no match for Natural Stupidity