Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Models/Road1.cs

28 lines
766 B
C#
Raw Normal View History

using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2019-04-22 14:17:44 +02:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
namespace CzokoŚmieciarka.MonoGameView.DataModels.Models
{
public class Road1 :IRoad1
{
2019-04-22 14:17:44 +02:00
private Coords Coords;
public Road1(Coords coords)
{
Coords = coords;
}
public void Draw(ContentManager content, SpriteBatch batch, int size)
{
batch.Draw(content.Load<Texture2D>("grass"), new Rectangle(Coords.X * 500 / size, Coords.Y * 500 / size, 500 / size, 500 / size), Color.White);
}
}
}