18 lines
451 B
C#
18 lines
451 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
|
|
{
|
|
public interface IGarbageLocalization
|
|
{
|
|
Coords Coords { get; }
|
|
|
|
IEnumerable<ATrashCan> TrashCans { get; set; }
|
|
}
|
|
}
|