class property as - int a,b,s;

Started by
2 comments, last by FDsagizi 11 years, 7 months ago
Hello!smile.png


have global variables may transfer a comma

but

classes have no such opportunity, why not?

exemple


int a,b,s;

class
{
int a;
int b;
int c;
}

class
{
int a,b,s; // this good, but no support :(
}
Advertisement
The only reason for this lack of support is that I haven't implemented it :)

I'll add it to the to-do list for a future implementation.

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

I've added support for this in revision 1419.

Regards,
Andreas

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

WOW!!!! It's realy greate!!!

This topic is closed to new replies.

Advertisement