diff --git a/x64/auth.hpp b/x64/auth.hpp index 526d9b5..ba3e99b 100644 --- a/x64/auth.hpp +++ b/x64/auth.hpp @@ -15,8 +15,11 @@ namespace KeyAuth { public: std::string name, ownerid, version, url, path; - - api(std::string name, std::string ownerid, std::string version, std::string url, std::string path) : name(name), ownerid(ownerid), version(version), url(url), path(path) {} + static bool debug; + + api(std::string name, std::string ownerid, std::string version, std::string url, std::string path, bool debug = true) { + debug = debug; + } void ban(std::string reason = ""); void init(); diff --git a/x64/library_x64.lib b/x64/library_x64.lib index 4e00853..e95b4b7 100644 Binary files a/x64/library_x64.lib and b/x64/library_x64.lib differ