I'm forgetting how to call a method from one class into another class. I know it's simple, I just totally forgot!
World w = getWorld(); int width = w.getWidth(); // object <dot> method_name ( <parameters> )
int width = getWorld().getWidth();