This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
#ifndef SOURCE_APP_INFO_H
#define SOURCE_APP_INFO_H
#ifdef _WIN32
#pragma once
#endif
enum ESourceApp
{
k_App_SDK_BASE = 0,
k_App_HL2,
k_App_CSS,
k_App_DODS,
k_App_HL2MP,
k_App_LOST_COAST,
k_App_HL1DM,
k_App_HL2_EP1,
k_App_PORTAL,
k_App_HL2_EP2,
k_App_TF2,
k_App_MAX
};
const int GetAppSteamAppId( ESourceApp eSourceApp );
const char *GetAppModName( ESourceApp eSourceApp );
const char *GetAppFullName( ESourceApp eSourceApp );
#endif