Hello, I wanted to know if there is a way to call a World subclass method by an actor. As in, my actor Bob can call getWorld().addObject(new Wife(pretty), getX(), getY()); because that is a direct method that the World has (the method being addObject()). But if I were to make a new subclass of World, called Home, and I were to construct a new static method in Home called decorateHome(Object furniture, int x, int y), how could Bob decorate his and his new Wife's home with a pottedPlant at location (42, 42)?

