Don't use my code Cody!!!
public HomeworkWorld()
{
// Create a new world with 400x100 cells with a cell size of 1x1 pixels.
super(400, 100, 1);
for(int i = 0; i<6; i++)
{
Emoticon emoticon = new Emoticon();
addObject(emoticon,10*(i+60),50);
}
}
}public class HomeworkWorld extends World
{
private String[] image = {"smiley1", "smiley2","smiley3","smiley4","smiley5"};;
private String[] soundfile = {"hello","happy","crying","ohno","raspberry"};
/**
* Constructor for objects of class HomeworkWorld.
*
*/
public HomeworkWorld()
{
// Create a new world with 400x100 cells with a cell size of 1x1 pixels.
super(400, 100, 1);
for(int i = 0; i<5; i++)
{
Emoticon emoticon = new Emoticon();
addObject(emoticon,10*(i+60),50);
}
}
}