A simple Game of Life implementation in Java
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.

15 lines
277 B

  1. public class Goldfish {
  2. private Grid _grid;
  3. private Render _render;
  4. public Goldfish () {
  5. _render = new Render(640, 480);
  6. _grid = new Grid(640, 480);
  7. }
  8. public static void main (String[] args) {
  9. Goldfish g = new Goldfish();
  10. }
  11. }