A simple Game of Life implementation in Java
25개 이상의 토픽을 선택하실 수 없습니다. 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. }