You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
527 B
24 lines
527 B
namespace MCTGLib
|
|
{
|
|
/// <summary>
|
|
/// Define an Item that can be displayed.
|
|
/// </summary>
|
|
interface IDisplayable
|
|
{
|
|
/// <summary>
|
|
/// Display the Id of the Item
|
|
/// </summary>
|
|
void DisplayId();
|
|
|
|
/// <summary>
|
|
/// Display the Description of the Item
|
|
/// </summary>
|
|
void DisplayDescription();
|
|
|
|
/// <summary>
|
|
/// Display the entire Item (Id, Description and other...)
|
|
/// </summary>
|
|
void DisplayItem();
|
|
}
|
|
}
|