using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.TrashCans; using CzokoŚmieciarka.MonoGameView.DataModels.Models; namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.GarbageCollector { public interface IGarbageCollector : ICloneable { int Counter { get; set; } int HouseCounter { get; set; } Coords Coords { get; } bool MoveUp(); bool MoveDown(); bool MoveLeft(); bool MoveRight(); IEnumerable TrashContainers { get; } } }