summaryrefslogtreecommitdiff
path: root/game/server/tf/entity_intermission.h
blob: 98a65469f301251e5f088273a2bf1504e530cc2d (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: Triggers an intermission
//
//=============================================================================//
#ifndef ENTITY_INTERMISSION_H
#define ENTITY_INTERMISSION_H

#ifdef _WIN32
#pragma once
#endif

//=============================================================================
//
// CTF Intermission class.
//

class CTFIntermission : public CLogicalEntity
{
public:
	DECLARE_CLASS( CTFIntermission, CLogicalEntity );

	void InputActivate( inputdata_t &inputdata );

	DECLARE_DATADESC();
};

#endif // ENTITY_INTERMISSION_H