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-08 17:07:08 +02:00
|
|
|
|
Coords Coords { get; }
|
2019-04-10 12:32:32 +02:00
|
|
|
|
void MoveUp();
|
|
|
|
|
void MoveDown();
|
|
|
|
|
void MoveLeft();
|
|
|
|
|
void MoveRight();
|
2019-03-13 14:19:38 +01:00
|
|
|
|
|
|
|
|
|
IEnumerable<AGarbageCollectorContainer> TrashContainers { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|