#region File Information //----------------------------------------------------------------------------- // ITextControl.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 { /// /// The interface for controls that show text /// public interface ITextControl { /// /// The text to display in this control /// string Text { get; set; } } }