blob: 3cbe3fa60bb8be86aea1d106c348b37b538cd364 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Includes all of the awards' header files, to save on typing. :)
//
// $Workfile: $
// $Date: $
//
//------------------------------------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef AWARDS_H
#define AWARDS_H
#ifdef WIN32
#pragma once
#endif
#include "SentryRebuildAward.h"
#include "CureAward.h"
#include "KamikazeAward.h"
#include "TalkativeAward.h"
#include "WeaponAwards.h"
#include "SharpshooterAward.h"
#include "TeamkillAward.h"
#include "SurvivalistAward.h"
#endif // AWARDS_H
|