Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Interfaces/Garbage/IGarbage.cs

18 lines
349 B
C#
Raw Normal View History

2019-03-13 14:19:38 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.Garbage
2019-03-13 14:19:38 +01:00
{
2019-03-13 17:23:52 +01:00
public interface IGarbage : ICloneable
2019-03-13 14:19:38 +01:00
{
ITypeOfGarbage TypeOfGarbage { get; }
int Weight { get; }
int Volume { get; }
}
}