2015-05-08 08:09:28 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2015-05-08 09:44:25 +00:00
|
|
|
|
using System.Xml.Serialization;
|
2015-05-08 08:09:28 +00:00
|
|
|
|
|
2015-05-08 09:44:25 +00:00
|
|
|
|
namespace TransportGame.Model
|
2015-05-08 08:09:28 +00:00
|
|
|
|
{
|
2015-05-08 09:44:25 +00:00
|
|
|
|
[XmlRoot("texture")]
|
|
|
|
|
public class Texture
|
2015-05-08 08:09:28 +00:00
|
|
|
|
{
|
2015-05-08 09:44:25 +00:00
|
|
|
|
[XmlAttribute("src")]
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlAttribute("expr")]
|
|
|
|
|
public string Expression { get; set; }
|
2015-05-08 08:09:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|