Agliullov D. A. Lab Work 3 Advanced #4

Merged
eegov merged 13 commits from Lab3 into Lab2 2022-10-14 10:14:31 +04:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit e46d5da591 - Show all commits

View File

@ -1,6 +1,6 @@
namespace AirBomber
{
partial class FormGeneratorAirplane
partial class FormMapWithSetAirplanes
{
/// <summary>
/// Required designer variable.

View File

@ -2,7 +2,7 @@
namespace AirBomber
{
public partial class FormGeneratorAirplane : Form
public partial class FormMapWithSetAirplanes : Form
{
/// <summary>
/// Объект от класса карты с набором объектов
@ -13,7 +13,7 @@ namespace AirBomber
/// <summary>
/// Конструктор
/// </summary>
public FormGeneratorAirplane()
public FormMapWithSetAirplanes()
{
_generatorAirplane = new(100, 100);
InitializeComponent();

View File

@ -11,7 +11,7 @@ namespace AirBomber
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new FormGeneratorAirplane());
Application.Run(new FormMapWithSetAirplanes());
}
}
}