/** * Moobreeder is a simple cow breeding game to illustrate the principles of * selective breeding to KS3 pupils. * * (c) Daniel Vedder 2018, * Amano Christian School */ /* * This is the main class with the GUI. */ import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.ArrayList; import Cow; public class MooBreeder extends JFrame { private JMenuBar menubar; private JMenu file, help; private JMenuItem reset, quit, help, about; private Box herdBox, parentBox, offspringBox; public static void main(String[] args) { //TODO } public MooBreeder() { //TODO } }