A simple Game of Life implementation in Java
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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