torpedo/Torpedo/Program.cs

18 lines
323 B
C#
Raw Normal View History

2025-01-31 12:00:16 +00:00
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(18);
jatek.Indul();
}
}
}