From b5d25f0e9a64a81f10903884b5920c35ad374e08 Mon Sep 17 00:00:00 2001 From: Onni Kukkonen Date: Tue, 6 Dec 2022 22:56:07 +0200 Subject: [PATCH] removed broken test app --- test.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 test.cpp diff --git a/test.cpp b/test.cpp deleted file mode 100644 index ab4a21a..0000000 --- a/test.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#include -#include -#include "ext/steam/steam_api.h" -#include -#include -#include -#include - -using namespace std; - -inline const char* const BoolToString(bool b) -{ - return b ? "true" : "false"; -} - -int main() { - SteamAPI_Init(); - auto testdlc = 445630; - std::cout << "We have " << SteamApps()->GetDLCCount() << " DLCs. " << std::endl; - std::cout << BoolToString(SteamApps()->BIsDlcInstalled(testdlc)) << std::endl; - std::cout << SteamUser()->UserHasLicenseForApp(SteamUser()->GetSteamID(), testdlc) << std::endl; - return 0; -}