Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Custom Console Library

C# library designed to bypass standard terminal bottlenecks and unlock graphics capability within the terminal. Supports 24-bit TrueColor rendering at >60 fps at ~900 chars wide.

Usage

using CustomConsole;
ConsoleBuffer.Clear(); // fills ConsoleBuffer to be black

ConsoleBuffer.Fill(255, 0, 0); / fills ConsoleBuffer to be red

ConsoleBuffer.ResizeBuffer(); // resizes ConsoleBuffer to be the size of active window

ConsoleBuffer.Write(0, 0, "Hello, World!", 255, 255, 255); // Write "Hello, World!" at 0, 0 in white

ConsoleBuffer.Write("Yo.", 0, 255, 0); // Write "Yo" at current Cursor position in green

ConsoleBuffer.Write(10, 7, "Line 1\nLine 2\n\tTabbed Indent"); // multi-line escape sequence tracking
// You *must* call this once per frame, otherwise it will not work
ConsoleBuffer.Draw(); // Draws the ConsoleBuffer to the Console
Screenshot 2026-06-23 165445

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages