enum TT
{
AA=0,
BB=1
}
void main()
{
}
This fails because of the enum. If i have just one member in the enum it works.
enum TT
{
AA=0,
BB=1
}
void main()
{
}
This fails because of the enum. If i have just one member in the enum it works.
Forget it. There was a mistake on my part. Sorry about that. It does work.
Ah. I was just going to ask what exactly the error was, because I wasn't able to reproduce the problem.
AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game