Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Models/Road2.cs
2019-04-23 06:32:35 +02:00

33 lines
869 B
C#

using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using MonoGameView.DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CzokoŚmieciarka.MonoGameView.DataModels.Models
{
public class Road2 : IRoad2, IDrawables
{
private Coords Coords;
public Road2(Coords coords)
{
Coords = coords;
}
public object Clone()
{
return new Road2((Coords)Coords.Clone());
}
public void Draw(SpriteBatch batch, int size)
{
batch.Draw(ImageContainer.GetImage("road2"), new Rectangle(Coords.X * 500 / size, Coords.Y * 500 / size, 500 / size, 500 / size), Color.White);
}
}
}