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

2014/11/3

My health code seem to not work

1
2
Alwin_Gerrits Alwin_Gerrits

2014/11/3

#
A void means you have declared a method like this
public void method()
It allso means you have no return in the code. Change the method to
public boolean method()
And obviously throw in a return statement with either a variable which has a true/false value or return true/false directly.
danpost danpost

2014/11/3

#
coder04 wrote...
where shall i add it because if i add it in the act or the hit enemy in the red laser class it says void type not allowed here
Read the middle line of my last post (starting 'Of course').
coder04 coder04

2014/11/3

#
thanx
You need to login to post a reply.
1
2