mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
Added bombardment in c#
This commit is contained in:
13
11_Bombardment/csharp/Program.cs
Normal file
13
11_Bombardment/csharp/Program.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Bombardment
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var bombardment = new Bombardment();
|
||||
bombardment.Play();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user