Added bombardment in c#

This commit is contained in:
a2wd
2022-01-04 01:57:36 +01:00
parent 2b9f3959d5
commit 2c1dea4de7
3 changed files with 204 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
namespace Bombardment
{
class Program
{
static void Main(string[] args)
{
var bombardment = new Bombardment();
bombardment.Play();
}
}
}