#nullable enable
namespace Terminal.Gui.Drivers;
#pragma warning disable CS1591
public class FakeDriverFactory
{
///
/// Creates a new instance of using default options
///
///
public IFakeConsoleDriver Create ()
{
return new FakeConsoleDriver (
new (),
new (),
new (),
() => DateTime.Now,
new ());
}
}