2
0

GUIElementStateStyle.cs 818 B

1234567891011121314151617181920212223
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System;
  4. using System.Runtime.CompilerServices;
  5. namespace BansheeEngine
  6. {
  7. /// <summary>
  8. /// Container for texture and text color used in a particular GUI element style.
  9. /// </summary>
  10. public struct GUIElementStateStyle
  11. {
  12. /// <summary>
  13. /// Texture used by the GUI element style state. Can be null.
  14. /// </summary>
  15. public SpriteTexture Texture;
  16. /// <summary>
  17. /// Color applied to the text when GUI element style state is active.
  18. /// </summary>
  19. public Color TextColor;
  20. };
  21. }