fixes and canva link
This commit is contained in:
parent
ac5c120ba2
commit
88a11b26bc
|
|
@ -2,6 +2,8 @@ When starting a task "TODO" edit it to "TODO-INPROGRESS"
|
||||||
When task is done edit it to "TODO-COMPLETE"
|
When task is done edit it to "TODO-COMPLETE"
|
||||||
If there is an error in the code edit it to "TODO-ERROR"
|
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:
|
Reminder of game of life rules:
|
||||||
1. Any living cell with strictly fewer than two living neighbors dies (referred to
|
1. Any living cell with strictly fewer than two living neighbors dies (referred to
|
||||||
|
|
|
||||||
|
|
@ -43,8 +43,8 @@ public class Simulator extends Thread {
|
||||||
|
|
||||||
//TODO-COMPLETE: add missing attribute initialization
|
//TODO-COMPLETE: add missing attribute initialization
|
||||||
//might want to changes those values later
|
//might want to changes those values later
|
||||||
this.width=100;
|
this.width=COL_NUM;
|
||||||
this.height=100;
|
this.height=LINE_NUM;
|
||||||
enableLogs = true; // for debugging purposes
|
enableLogs = true; // for debugging purposes
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue