2019-04-22 09:24:16 +02:00
|
|
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Models;
|
2019-03-13 15:40:17 +01:00
|
|
|
|
|
2019-04-22 09:24:16 +02:00
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.TrashCans
|
2019-03-13 15:40:17 +01:00
|
|
|
|
{
|
|
|
|
|
public abstract class ADump : ATrashCan
|
|
|
|
|
{
|
2019-03-13 15:42:14 +01:00
|
|
|
|
protected ADump(ITypeOfGarbage typeOfGarbage, int maxVolume, Coords localization) : base(typeOfGarbage, maxVolume)
|
2019-03-13 15:40:17 +01:00
|
|
|
|
{
|
2019-04-08 17:07:08 +02:00
|
|
|
|
this.Coords = localization;
|
2019-03-13 15:40:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-08 17:07:08 +02:00
|
|
|
|
public Coords Coords { get; set; }
|
2019-03-13 15:40:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|