2019-03-13 18:12:45 +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;
|
|
|
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.TrashCans;
|
|
|
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Models;
|
2019-03-13 18:12:45 +01:00
|
|
|
|
|
2019-04-22 09:24:16 +02:00
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.GeneralModels.Models
|
2019-03-13 18:12:45 +01:00
|
|
|
|
{
|
|
|
|
|
public class GarbageLocalization : IGarbageLocalization
|
|
|
|
|
{
|
|
|
|
|
public GarbageLocalization(Coords coords, IEnumerable<ATrashCan> trashCans)
|
|
|
|
|
{
|
|
|
|
|
this.Coords = coords;
|
|
|
|
|
this.TrashCans = trashCans;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Coords Coords { get; }
|
|
|
|
|
public IEnumerable<ATrashCan> TrashCans { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|