void HitCounter{
Hits++;
}
Well? Where are the parameters? The error said it does not declare parameters. You want something like:
void HitCounter ()
{
Hits++;
}
void HitCounter{
Hits++;
}
Well? Where are the parameters? The error said it does not declare parameters. You want something like:
void HitCounter ()
{
Hits++;
}