30 lines
737 B
C#
30 lines
737 B
C#
/* Shaun Marquardt
|
|
* TINFO 200
|
|
* Game of Life simulation
|
|
* ****************************************************
|
|
* Change History
|
|
* Date Developer Description
|
|
* 2020-01-16 marqusa File creation and initial implementation -- Charles Costarella
|
|
* 2020-01-28 marqusa --Charles Costarella
|
|
*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GLife
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
// create a top level object that represents the game
|
|
Game game = new Game();
|
|
|
|
// start the main game simulation
|
|
game.PlayGame();
|
|
}
|
|
}
|
|
}
|