high life rule

This commit is contained in:
Gator
2022-12-18 13:50:21 +01:00
parent bce0f39aff
commit 61846b88a5
3 changed files with 24 additions and 0 deletions

View File

@ -116,6 +116,12 @@ const preset2dRules = [
description:
"Variation on Conway's Game of Life *without* the 'three live neighbors' rule",
},
{
id: "highlife",
name: "HighLife variation",
description:
"Variation on Conway's Game of Life where a cell live if the six neighbor cells are alive",
},
];
export { presetRuleset, initialStates, preset2dRules };