diff --git a/README.md b/README.md index 1dbf9e5..5217794 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ When starting a task "TODO" edit it to "TODO-INPROGRESS" When task is done edit it to "TODO-COMPLETE" If there is an error in the code edit it to "TODO-ERROR" +Link Canva Whiteboard: +https://www.canva.com/design/DAGCBGF5b4c/4cNmhoS6lSC8Once9r_Tlg/edit?utm_content=DAGCBGF5b4c&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton Reminder of game of life rules: 1. Any living cell with strictly fewer than two living neighbors dies (referred to diff --git a/src/backend/Simulator.java b/src/backend/Simulator.java index 14ccf9f..61f067b 100644 --- a/src/backend/Simulator.java +++ b/src/backend/Simulator.java @@ -43,8 +43,8 @@ public class Simulator extends Thread { //TODO-COMPLETE: add missing attribute initialization //might want to changes those values later - this.width=100; - this.height=100; + this.width=COL_NUM; + this.height=LINE_NUM; enableLogs = true; // for debugging purposes