How can I execute a method in a class which is from another class without using static (i can't use static because I use methods like the getObjects method)?
//global A a = new A(); //Act method if(it's true)..then a.xyzMethod();
//global A a = new A(); //Act method if(it's true)..then a.xyzMethod();
//global A a = new A(); //in act method a.move(2);
//global A a = new A(); //in act method a.move(2);
getWorld().getObjects(Actor.class).get(0).test();