Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Interfaces/ITypeOfGarbage.cs

19 lines
416 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;
using CzokoŚmieciarka.MonoGameView.DataModels.Enums;
2019-03-13 14:19:38 +01:00
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces
2019-03-13 14:19:38 +01:00
{
2019-04-23 06:32:35 +02:00
public interface ITypeOfGarbage : ICloneable
2019-03-13 14:19:38 +01:00
{
2019-03-27 15:54:50 +01:00
GarbageType GarbageType { get; }
2019-03-13 18:12:45 +01:00
2019-03-13 14:19:38 +01:00
int ProcessingTimePerUnit { get; }
2019-03-13 18:12:45 +01:00
2019-03-13 14:19:38 +01:00
int Density { get; }
}
}