Hi, for some reason it keeps saying that non-static method setLocation(int,int) cannot be referenced from a static context when I try to compile my world. (the bold part in my code) What does that mean and how should i fix the problem?
Here is my code:
Lobster lobster2 = new Lobster();
addObject(lobster2, 50, 111);
Lobster.setLocation(390,200);
Lobster2.setLocation(28, 546);

