module Life
Defined in:
life/config.crlife/version.cr
Constant Summary
-
AutoStart =
false
-
BoardColor =
SF.color(rand(128), rand(128), rand(128))
-
CellColor =
SF.color(128 + (rand(128)), 128 + (rand(128)), 128 + (rand(128)))
-
ConfigFile =
"life.cfg"
-
ConnectHorizontal =
true
-
ConnectVertical =
true
-
CycleInterval =
0.01
-
GenerationMode =
:random
-
Mode of generation of the board: :file read from file :random randomly generated
-
Height =
150
-
OverPopulation =
4
-
PrintCycleInterval =
100
-
ReproductionMax =
3
-
ReproductionMin =
3
-
TileHeight =
4
-
TileWidth =
4
-
UnderPopulation =
1
-
VERSION =
"0.3.0"
-
Width =
300