Portable text based console manipulator

Alright, i finally found a portable and easy to use library: rlutil.h

Usage:

#include <iostream>
#include "rlutil.h"
int main()
{
    for (int i = 0; i < 16; i++)
    {
        rlutil::setColor(i);
        std::cout << i << " ";
    }
    std::cout << std::endl;
    return 0;
}

but, i will be glad for other suggestions.

Leave a Comment