gui-kit

Welcome to gui-kit

Quick links to get started.

gui-kit is a C++ only library that can be used for desktop application development.

#include <guikit/window.hpp>

int main() {
  guikit::Window window("window title", 600, 400);
  window.show();
}