/** Initialize class fields. */
 public void init(
     Record record,
     ScreenLocation itsLocation,
     BasePanel parentScreen,
     Converter fieldConverter,
     int iDisplayFieldDesc,
     Map<String, Object> properties) {
   super.init(record, itsLocation, parentScreen, fieldConverter, iDisplayFieldDesc, properties);
 }
Example #2
0
 public Execution() throws Exception {
   Screen scr = new Screen();
   scr.init();
   new LevelLoad().spawnlevel(blocks);
   runtime();
 }