25 lines
660 B
C#
25 lines
660 B
C#
using System;
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces;
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.Garbage;
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.GeneralModels.Models
|
|
{
|
|
public class Garbage : AGarbage
|
|
{
|
|
public Garbage(ITypeOfGarbage typeOfGarbage, int weight) : base(typeOfGarbage, weight)
|
|
{
|
|
}
|
|
|
|
protected override AGarbage Add(AGarbage garbageToAdd)
|
|
{
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
protected override AGarbage Subtract(AGarbage garbageToSubtract)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|