2019-03-13 14:19:38 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-04-22 09:24:16 +02:00
|
|
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.TrashCans;
|
|
|
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Models;
|
2019-03-13 14:19:38 +01:00
|
|
|
|
|
2019-04-22 09:24:16 +02:00
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.GarbageCollector
|
2019-03-13 14:19:38 +01:00
|
|
|
|
{
|
2019-03-26 19:37:15 +01:00
|
|
|
|
public interface IGarbageCollector : ICloneable
|
2019-03-13 14:19:38 +01:00
|
|
|
|
{
|
2019-04-23 11:24:07 +02:00
|
|
|
|
int Counter { get; set; }
|
|
|
|
|
int HouseCounter { get; set; }
|
2019-04-08 17:07:08 +02:00
|
|
|
|
Coords Coords { get; }
|
2019-04-23 11:24:07 +02:00
|
|
|
|
bool MoveUp();
|
|
|
|
|
bool MoveDown();
|
|
|
|
|
bool MoveLeft();
|
|
|
|
|
bool MoveRight();
|
2019-03-13 14:19:38 +01:00
|
|
|
|
|
|
|
|
|
IEnumerable<AGarbageCollectorContainer> TrashContainers { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|