31 lines
1009 B
C#
31 lines
1009 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces;
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.TrashCans;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Content;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using MonoGameView.DataModels.Models;
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Models
|
|
{
|
|
public class House : IDrawables, IGarbageLocalization
|
|
{
|
|
public Coords Coords { get; }
|
|
|
|
public House(Coords coords, IEnumerable<ATrashCan> trashCans)
|
|
{
|
|
Coords = coords;
|
|
}
|
|
public void Draw(SpriteBatch batch, int size)
|
|
{
|
|
batch.Draw(ImageContainer.GetImage("house"), new Rectangle(Coords.X * 500 / size, Coords.Y * 500 / size, 500 / size, 500 / size), Color.White);
|
|
}
|
|
|
|
public IEnumerable<ATrashCan> TrashCans { get; set; }
|
|
}
|
|
}
|