C# implementation of Bullseye

This commit is contained in:
bmshipe
2022-01-01 17:05:51 -06:00
parent 73e3b4be2d
commit 5e0f7cf9ad
5 changed files with 311 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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();
}
}
}