| 123456789101112131415161718192021222324252627 |
- #region File Information
- //-----------------------------------------------------------------------------
- // Image.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- #endregion
- namespace DynamicMenu.Controls
- {
- /// <summary>
- /// Defines an image control. Because control has all the properties needed to show an image, this class
- /// is empty. It is separated out to make it clear the purpose for this control.
- /// </summary>
- public class Image : Control
- {
- // Nothing at this level
- }
- }
|