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

a C++/C Library that makes development easier

Notifications You must be signed in to change notification settings

AgesoftOSS/Consoleutilities

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 

Repository files navigation

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