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