This site requires JavaScript, please enable it in your browser!
Greenfoot
Username
Password
Remember Me?
Sign Up, Lost Password
Activity
About
Documentation
Download
Discuss
Scenarios
flopa92
wrote ...
2013/5/10
Following problem
1
2
flopa92
2013/5/10
#
someone can help me?
Gevater_Tod4711
2013/5/10
#
flopa92 wrote...
error List<lift> LiftList = getObjects(lift.class);
That's not possible because lift has to be the classname try this: List<Lift> LiftList = getObjects(Lift.class);
schetefan24
2013/5/10
#
I also wanted to write it so... :D make sure, that the Lift class has EXACT the name "Lift" (first letter large) in the code from your lift-class was the name written with a small l
danpost
2013/5/10
#
It should be '
getWorld().
getObjecs(lift.class)'.
You need to login to post a reply.
1
2
X