I have 2 classes, MainActivity and MainGame. If I have a public static void in MainActivity, and one in MainGame. How would I execute the one in MainGame from MainActivity?
For example, I have this:
Main Activity:
public static void 1() { 2(); } Main Game:
public static void 2() { //blah blah blah }
Android, it is general.