using System.IO; namespace MfGames.Nitride.Contents; /// /// Indicates a content source that provides data as a TextReader and text. /// public interface ITextContent : IContent { /// /// Opens a text reader into the underlying source of text data. /// /// /// It is up to the calling class to close this reader. /// /// The text reader to the internal data. TextReader GetReader(); }