mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-12 15:50:20 -08:00
14 lines
228 B
C#
14 lines
228 B
C#
using System;
|
|
|
|
namespace Bombardment
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var bombardment = new Bombardment();
|
|
bombardment.Play();
|
|
}
|
|
}
|
|
}
|