24 lines
610 B
C#
24 lines
610 B
C#
|
|
using ProjectAirplaneWithRadar.Drawnings;
|
|
|
|
namespace ProjectAirplaneWithRadar.CollectionGenericObjects
|
|
{
|
|
|
|
public class PlaneSharingService : AbstractCompany
|
|
{
|
|
public PlaneSharingService(int picWidth, int picHeight, ICollectionGenericObjects<DrawningAirplane> collection) : base(picWidth, picHeight, collection)
|
|
{
|
|
}
|
|
|
|
protected override void DrawBackgound(Graphics g)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override void SetObjectsPosition()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|