Skip to content

EinTim23/thiccmenu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Thicc Menu

A very simple, header only c++ based menu library

Note: currently windows only, as it uses the winapi for the cursor. Linux compability will follow soon.

Basic Example

#include "thiccmenu.hpp"

int main() {
	switch (thiccmenu::Menu({"1. Say hi", "2. Say bye"}, Colors::Gray, Colors::Darkgray)) {
	case 1:
		std::cout << "hi\n";
		break;
	case 2:
		std::cout << "bye\n";
		break;
	}
}

Showcase

2022-01-17.22-07-25.mp4

About

A very simple, header only c++ based menu library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages