mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 07:29:02 -08:00
C# implementation of Bullseye
This commit is contained in:
14
18_Bullseye/csharp/Program.cs
Normal file
14
18_Bullseye/csharp/Program.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user