]> Dogcows Code - chaz/carfire/blob - Project06/CS 3505 Project 06/CS 3505 Project 06/Program.cs
initial upload
[chaz/carfire] / Project06 / CS 3505 Project 06 / CS 3505 Project 06 / Program.cs
1 using System;
2
3 namespace CS_3505_Project_06
4 {
5 static class Program
6 {
7 /// <summary>
8 /// The main entry point for the application.
9 /// </summary>
10 static void Main(string[] args)
11 {
12 using (Game06 game = new Game06())
13 {
14 game.Run();
15 }
16 }
17 }
18 }
19
This page took 0.030357 seconds and 4 git commands to generate.