24 lines
668 B
C#
24 lines
668 B
C#
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<AGarbageCollectorContainer> TrashContainers { get; }
|
|
}
|
|
}
|