blob: 5c827b9756043bd6da1582aef03b3ad997016fbf (
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
29
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef UTIL_H
#define UTIL_H
#ifdef _WIN32
#pragma once
#endif
//-----------------------------------------------------------------------------
// Purpose: Utility function for the server browser
//-----------------------------------------------------------------------------
class CUtil
{
public:
const char *InfoGetValue(const char *s, const char *key);
const char *GetString(const char *stringName);
};
extern CUtil *util;
#endif // UTIL_H
|