Files
basic-computer-games/18_Bullseye/csharp/Program.cs
2022-01-01 17:05:51 -06:00

15 lines
296 B
C#

using System;
namespace Bullseye
{
public static class Program
{
// Entry point to the application; create an instance of the
// game class and call Run()
public static void Main(string[] args)
{
new BullseyeGame().Run();
}
}
}