A simple Game of Life implementation in Java
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
128 B

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