]> Dogcows Code - chaz/carfire/blob - Program.cs
cf884a2a4efee6ca26303aabcafbc43d5c1f3635
[chaz/carfire] / Program.cs
1 using System;
2
3 namespace lobbyTest
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 (Game1 game = new Game1())
13 {
14 game.Run();
15 }
16 }
17 }
18 }
19
This page took 0.035436 seconds and 3 git commands to generate.