Poprawa wysypiska
This commit is contained in:
parent
e90ecfa634
commit
e9476f7b2d
@ -46,7 +46,7 @@
|
||||
<Compile Include="Interfaces\GarbageCollector\IGarbageCollector.cs" />
|
||||
<Compile Include="Interfaces\Garbage\AGarbage.cs" />
|
||||
<Compile Include="Interfaces\Garbage\IGarbage.cs" />
|
||||
<Compile Include="Interfaces\IDump.cs" />
|
||||
<Compile Include="Interfaces\TrashCans\ADump.cs" />
|
||||
<Compile Include="Interfaces\IGarbageLocalization.cs" />
|
||||
<Compile Include="Interfaces\ITypeOfGarbage.cs" />
|
||||
<Compile Include="Interfaces\RoutePlanningEngine\IRoutePlanningEngine.cs" />
|
||||
|
@ -10,8 +10,9 @@ namespace CzokoŚmieciarka.DataModels.Interfaces
|
||||
{
|
||||
public abstract class ADump : ATrashCan
|
||||
{
|
||||
protected ADump(ITypeOfGarbage typeOfGarbage, int maxVolume) : base(typeOfGarbage, maxVolume)
|
||||
protected ADump(ITypeOfGarbage typeOfGarbage, int maxVolume, Coords localization) : base(typeOfGarbage, maxVolume)
|
||||
{
|
||||
this.Localization = localization;
|
||||
}
|
||||
|
||||
Coords Localization { get; }
|
Loading…
Reference in New Issue
Block a user