Welcome to gui-kit
Quick links to get started.
gui-kit is a C++ only library that can be used for desktop application development.
namespace guikit {
class Window {
private:
struct mfb_window *fb_window = NULL;
uint32_t *buffer = NULL;
protected:
public:
Window();
Window(std::string title, uint64_t height, uint64_t width);
~Window();
};
}