namespace MCTGLib { /// /// Define an Item that can be displayed. /// interface IDisplayable { /// /// Display the Id of the Item /// void DisplayId(); /// /// Display the Description of the Item /// void DisplayDescription(); /// /// Display the entire Item (Id, Description and other...) /// void DisplayItem(); } }