22 lines
547 B
C#
22 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
|
|
using CzokoŚmieciarka.DataModels.Models;
|
|
|
|
namespace CzokoŚmieciarka.DataModels.Interfaces
|
|
{
|
|
public interface IGarbageCollector : ICloneable
|
|
{
|
|
Coords Coords { get; }
|
|
Coords MoveUp();
|
|
Coords MoveDown();
|
|
Coords MoveLeft();
|
|
Coords MoveRight();
|
|
|
|
IEnumerable<AGarbageCollectorContainer> TrashContainers { get; }
|
|
}
|
|
}
|