This site requires JavaScript, please enable it in your browser!
Greenfoot back
faizakamal
faizakamal wrote ...

2011/10/3

what is a counter on greenfoot?

1
2
moobe moobe

2013/1/29

#
You have to declare your counter variable and let it count up. Write at the end of your act method
counter++;
and declare it this way:
private int counter = 0;
CHERNANDEZ95 CHERNANDEZ95

2013/1/29

#
Thank you very much
You need to login to post a reply.
1
2