mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
15 lines
296 B
C#
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();
|
|
}
|
|
}
|
|
}
|