Создание класса PlanesGenericCollection, дополнение класса DrawningAirPlane

This commit is contained in:
malimova 2023-10-15 20:20:06 +04:00
parent 0bdfe1f404
commit f4bf49eca1
2 changed files with 18 additions and 0 deletions

View File

@ -269,5 +269,11 @@ namespace AirBomber
break; break;
} }
} }
/// <summary>
/// Получение объекта IMoveableObject из объекта DrawningCar
/// </summary>
public IMoveableObject GetMoveableObject => new
DrawningObjectAirPlane(this);
} }
} }

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirBomber
{
internal class PlanesGenericCollection
{
}
}