Hi
Error:
The script ended with an exception.
funcf: void startGame(string&inout)
sect: Start.as
line: 32
desc: Null pointer access
Code:
class A
{
int GetCount(){ return 10; }
}
void startGame( string ¶m )
{
A @a = null; // line 23
for( int i=0; i < a.GetCount(); i++ ) // line 25
{
int some_val; // line 32
}
}