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.

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