Создание класса PlanesGenericCollection, дополнение класса DrawningAirPlane
This commit is contained in:
parent
0bdfe1f404
commit
f4bf49eca1
@ -269,5 +269,11 @@ namespace AirBomber
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Получение объекта IMoveableObject из объекта DrawningCar
|
||||||
|
/// </summary>
|
||||||
|
public IMoveableObject GetMoveableObject => new
|
||||||
|
DrawningObjectAirPlane(this);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
AirBomber/AirBomber/PlanesGenericCollection.cs
Normal file
12
AirBomber/AirBomber/PlanesGenericCollection.cs
Normal 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
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user