From 2328fc870e16d3f4a9594c6cbe2134339752c8b6 Mon Sep 17 00:00:00 2001 From: George Allen Date: Mon, 12 Apr 2021 07:25:35 +0100 Subject: [PATCH] Add missing import to fix build This import was missing when we added the ISteamApps implementation. Adding it fixes the currently failing build. --- src/core.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core.cpp b/src/core.cpp index 3184da1..e741dad 100644 --- a/src/core.cpp +++ b/src/core.cpp @@ -4,6 +4,7 @@ #include "friends.hpp" #include "user_stats.hpp" #include "utils.hpp" +#include "apps.hpp" // ======================== // ======= SteamAPI =======