A simple Game of Life implementation in Java
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

10 řádky
128 B

  1. public class Render {
  2. public Render (int width, int height) {
  3. }
  4. public Render () {
  5. this(100,100);
  6. }
  7. }