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(); } } }