namespace InkBlot;
///
/// An object that can read files.
///
public interface IFileReader
{
///
/// Get the contents of a file.
///
///
/// Name of the file to read. The name is relative to the main ink file. The name is normalized
/// (uses only single forward slashes between path elements).
///
/// A stream with the contents of the file.
Stream GetContents(string filename);
}