using Microsoft.Xna.Framework; namespace FF8 { internal static partial class Module_main_menu_debug { #region Structs /// /// Container for MenuItems containing relevant info. /// private struct Item { #region Properties public Rectangle Loc { get; set; } public FF8String Text { get; set; } #endregion Properties } #endregion Structs } }