Adding comment about the port.

This commit is contained in:
Dyego Maas
2022-01-11 20:48:13 -03:00
parent c7c3d68a2e
commit 985e1886ac

View File

@@ -1,4 +1,16 @@
using System.Text;
/*
* LIFE
* An implementation of John Conway's popular cellular automaton
* Ported by Dyego Alekssander Maas
*
* An example pattern would be:
* " * "
* "***"
* "DONE" (indicates that the simulation can start)
*
* You can find patterns to play with here: http://pi.math.cornell.edu/~lipa/mec/lesson6.html
*/
using System.Text;
const int maxWidth = 70;
const int maxHeight = 24;