blob: a78b2f50672a3e8bcc3c505acbdeed7c89f71f50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef POINT_BONUSMAPS_ACCESSOR_H
#define POINT_BONUSMAPS_ACCESSOR_H
#ifdef _WIN32
#pragma once
#endif
void BonusMapChallengeUpdate( const char *pchFileName, const char *pchMapName, const char *pchChallengeName, int iBest );
void BonusMapChallengeNames( char *pchFileName, char *pchMapName, char *pchChallengeName );
void BonusMapChallengeObjectives( int &iBronze, int &iSilver, int &iGold );
#endif // POINT_BONUSMAPS_ACCESSOR_H
|