This commit is contained in:
miguel
2019-09-03 23:47:29 -04:00
parent 90ce395484
commit 3097f346d3

View File

@@ -177,10 +177,16 @@ milliseconds, or you can press `ESC` twice.
# Driver model
Currently gui.cs has support for both ncurses and the `System.Console`
front-ends. ncurses is used on Unix, while `System.Console` is used
on Windows, but you can force the use of `System.Console` on Unix as
well, see `Core.cs`.
Currently gui.cs has support for ncurses, `System.Console` and a full
Win32 console front-end.
ncurses is used on Unix with color support based on what your library
is compiled with; The windows driver supports full color and mouse, and
an easy-to-debug `System.Console` can be used on Windows and Unix, but
lacks mouse support.
You can force the use of `System.Console` on Unix as
well, see `Core.cs`.
# Tasks