Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Interfaces/GarbageCollector/IGarbageCollector.cs

24 lines
668 B
C#
Raw Normal View History

2019-03-13 14:19:38 +01:00
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;
2019-03-13 14:19:38 +01: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; }
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; }
}
}