A simple Game of Life implementation in Java
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
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. }