Consoleutilities is a C++ Library for Windows which makes your c++ development alot easier and faster
Features:
- Changing Console Colors
- Console Interaction (window size, color changing)
- Simplefied Math Functions
- Oriented Namespaces
to use it you need to include consoleutilities.h
in your project explorer then add this code:
#include "consoleutilities.h"
example code:
int main() {
as::cu::ChangeColorText(Color::CYAN);
std::cout << "Hello World" << std::endl;
as::cu::ChangeColorText(Color::WHITE);
}
You can contribute in this repo by finding any bugs / typo please create a issue and I look forward for it