Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
UIImageInfo.cs
Go to the documentation of this file.
1 using SiliconStudio.Core;
2 using SiliconStudio.Core.Mathematics;
3 
4 namespace SiliconStudio.Paradox.Assets.UIImage
5 {
6  /// <summary>
7  /// Describes information required by an UI image.
8  /// </summary>
9  [DataContract("UIImageInfo")]
10  public class UIImageInfo : ImageInfo
11  {
12  /// <summary>
13  /// Gets or sets the size of the unstretchable borders of the image.
14  /// </summary>
15  [DataMember(40)]
16  public Vector4 Borders { get; set; }
17  }
18 }
Represents a four dimensional mathematical vector.
Definition: Vector4.cs:42
Describes information required by an UI image.
Definition: UIImageInfo.cs:10
Describes various information about an image.
Definition: ImageInfo.cs:14