Skip to content

Install Language Specific Tools

SplashKit supports multiple programming languages, each with its own set of tools. Follow the steps below to install the necessary tools for your chosen language.

To develop with C# in SplashKit, you’ll need to install the .NET SDK.

  1. Download the .NET SDK

    Go to the official .NET SDK download page and download the latest version for Windows.

  2. Install the .NET SDK

    Run the downloaded installer and follow the on-screen instructions to complete the installation.

  3. Verify the Installation

    Open your MSYS2 terminal and run the following command to confirm that .NET is installed:

    Terminal window
    dotnet --version

    If installed correctly, this command will output the version number of the .NET SDK.

For C++ development, your MSYS2 setup already includes the necessary tools for SplashKit. No additional setup is required specifically for C++.

To develop with Python in SplashKit, you can install the python and pip MSYS2 packages by running the following command in your MINGW64 terminal:

Terminal window
pacman -S mingw-w64-x86_64-python mingw-w64-x86_64-python-pip --noconfirm --disable-download-timeout

Support for other languages such as Rust and Pascal are coming soon.