Add missing header include guards.

This commit is contained in:
redpolline 2024-06-07 05:32:35 -04:00
parent ae6e1829dd
commit 8e8355c013
33 changed files with 167 additions and 2 deletions

View file

@ -1,5 +1,8 @@
#include "base.h"
#ifndef INCLUDED_STEAM_APPS_H
#define INCLUDED_STEAM_APPS_H
class Steam_Apps :
public ISteamApps001,
public ISteamApps002,
@ -110,3 +113,5 @@ public:
// set current DLC AppID being played (or 0 if none). Allows Steam to track usage of major DLC extensions
bool SetDlcContext( AppId_t nAppID );
};
#endif // INCLUDED_STEAM_APPS_H