Merge branch 'main' of https://gitarero.ecam.fr/guillaume.bonabau/OOP_F1_Project
This commit is contained in:
commit
c7bbab6e9b
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue