#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 { /// /// 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. /// public class Image : Control { // Nothing at this level } }