NAME
Games::Roguelike::Console::ANSI - socket-friendly, object oriented curses-like support for an ansi screen buffer
SYNOPSIS
use Games::Roguelike::Console::ANSI;
$con = Games::Roguelike::Console::ANSI->new();
$con->attron('bold yellow');
$con->addstr('test');
$con->attroff();
$con->refresh();
DESCRIPTION
Combines ReadKey and Term::ANSIColor into an object oriented curses-like ansi screen buffer.
Inherits from Games::Roguelike::Console. See Games::Roguelike::Console for list of methods.
SEE ALSO
AUTHOR
Erik Aronesty erik@q32.com
LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html or the included LICENSE file.