You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
266 B

  1. package de.hsfulda.pmuw;
  2. import de.hsfulda.pmuw.oop.CgolBoardOop;
  3. import de.hsfulda.pmuw.procedural.CgolBoardProcedural;
  4. public class CgolLauncher {
  5. public static void main(String[] args) {
  6. CgolBoardProcedural.main(null);
  7. CgolBoardOop.main(null);
  8. }
  9. }