Image.cs 784 B

123456789101112131415161718192021222324252627
  1. #region File Information
  2. //-----------------------------------------------------------------------------
  3. // Image.cs
  4. //
  5. // Microsoft XNA Community Game Platform
  6. // Copyright (C) Microsoft Corporation. All rights reserved.
  7. //-----------------------------------------------------------------------------
  8. #endregion
  9. #region Using Statements
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Linq;
  13. using System.Text;
  14. #endregion
  15. namespace DynamicMenu.Controls
  16. {
  17. /// <summary>
  18. /// Defines an image control. Because control has all the properties needed to show an image, this class
  19. /// is empty. It is separated out to make it clear the purpose for this control.
  20. /// </summary>
  21. public class Image : Control
  22. {
  23. // Nothing at this level
  24. }
  25. }