torpedo/Torpedo/Program.cs

18 lines
322 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)
{
2025-02-07 12:01:04 +00:00
TorpedoJatek jatek = new TorpedoJatek(8);
2025-01-31 12:00:16 +00:00
jatek.Indul();
}
}
}