Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (23 loc) · 848 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 848 Bytes

Consoleutilities

e

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

Getting Started with Consoleutilities

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);
}

Contributing

You can contribute in this repo by finding any bugs / typo please create a issue and I look forward for it