(boolean restart)
| 1142 | } |
| 1143 | |
| 1144 | public static void exitAnimation(boolean restart) { |
| 1145 | if (transitionScreen != null) |
| 1146 | return; //finish transition incase exit is touched |
| 1147 | if (closingScreen == null) { |
| 1148 | closingScreen = new ClosingScreen(restart); |
| 1149 | } |
| 1150 | } |
| 1151 | |
| 1152 | public static abstract class KeyInputAdapter { |
| 1153 | public abstract FDisplayObject getOwner(); |
no outgoing calls
no test coverage detected