29 lines
794 B
C#
29 lines
794 B
C#
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
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 Road1 :IRoad1, IDrawables
|
|
{
|
|
private Coords Coords;
|
|
|
|
public Road1(Coords coords)
|
|
{
|
|
Coords = coords;
|
|
}
|
|
|
|
public void Draw(SpriteBatch batch, int size)
|
|
{
|
|
batch.Draw(ImageContainer.GetImage("road1"), new Rectangle(Coords.X * 500 / size, Coords.Y * 500 / size, 500 / size, 500 / size), Color.White);
|
|
}
|
|
}
|
|
}
|