Skip to content
This repository has been archived by the owner on Oct 29, 2023. It is now read-only.
Simon edited this page Jan 15, 2021 · 9 revisions

Welcome to the Fungal UI wiki. This is hardly complicated stuff but it might be of use anyways.

Setting up Fungal UI

⚠️ Make sure you're using C++17 or later in your project

To set up the use of Fungal UI in your project:

  • Download the latest release

  • Extract the files and place them somewhere where they won't be accidentally removed

  • Add release/path/include to your additional include directory

  • Add:

    • for x32 release/path/lib/[configuration]
    • for x64 release/path/lib64/[configuration]

    to your additional library directories

  • Add fui.lib to your additional dependencies

  • Add #include <fui/fui.h> somewhere in your source

All classes and functions are available under the namespace fungal.

Clone this wiki locally