// create ditectory's for configs, fonts, scripts and other shit.
    std::filesystem::create_directory( XOR( "C:\\skeet.idb\\" ) );
    std::filesystem::create_directory(XOR("C:\\skeet.idb\\Configs\\"));
    std::filesystem::create_directory(XOR("C:\\skeet.idb\\Fonts\\"));
    std::filesystem::create_directory(XOR("C:\\skeet.idb\\Scripts\\"));
    std::filesystem::create_directory(XOR("C:\\skeet.idb\\Sounds\\"));
    // download our fonts, kinda gay but yes...
    static bool bDownloaded = false;
    if( !bDownloaded ) {
        URLDownloadToFile( NULL, XOR( "https://drive.google.com/uc?id=1I8iqKzSN2btsndIDICLM-ygbRplBbPjq&export=download" ),
            XOR( "C:\\skeet.idb\\Fonts\\Menu.ttf" ), 0, NULL );
        AddFontResourceA( XOR( "C:\\skeet.idb\\Fonts\\Menu.ttf" ) );
        bDownloaded = true;
    }