21 lines
427 B
C#
21 lines
427 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CzokoŚmieciarka.DataModels.Models;
|
|
using CzokoŚmieciarka.MonoGame.Interfaces;
|
|
|
|
namespace CzokoŚmieciarka.MonoGame.Models
|
|
{
|
|
class Road2 : IWPFObject
|
|
{
|
|
public string ImagePath { get; set; }
|
|
public Coords Coords { get; set; }
|
|
|
|
public Road2()
|
|
{
|
|
}
|
|
}
|
|
}
|