Module_main_menu_debug.Item.cs 491 B

123456789101112131415161718192021222324
  1. using Microsoft.Xna.Framework;
  2. namespace FF8
  3. {
  4. internal static partial class Module_main_menu_debug
  5. {
  6. #region Structs
  7. /// <summary>
  8. /// Container for MenuItems containing relevant info.
  9. /// </summary>
  10. private struct Item
  11. {
  12. #region Properties
  13. public Rectangle Loc { get; set; }
  14. public FF8String Text { get; set; }
  15. #endregion Properties
  16. }
  17. #endregion Structs
  18. }
  19. }