torpedo/Torpedo/Program.cs
2025-02-07 13:01:04 +01:00

18 lines
322 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Torpedo
{
internal class Program
{
static void Main(string[] args)
{
TorpedoJatek jatek = new TorpedoJatek(8);
jatek.Indul();
}
}
}