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