blob: 4e79f78df3ef022cd2fbda20fc8bf5c0f690df1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
|