You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
610 B
32 lines
610 B
8 years ago
|
//++ BulliT
|
||
|
|
||
|
#if !defined(AFX_AGMATCH_H__AD3BF401_1118_465A_9BF2_699D72665B5C__INCLUDED_)
|
||
|
#define AFX_AGMATCH_H__AD3BF401_1118_465A_9BF2_699D72665B5C__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
class AgMatch
|
||
|
{
|
||
|
float m_fMatchStart;
|
||
|
float m_fNextSay;
|
||
|
float m_fNextHLTV;
|
||
|
AgString m_sSpawnFlag;
|
||
|
void MatchStart();
|
||
|
|
||
|
public:
|
||
|
AgMatch();
|
||
|
virtual ~AgMatch();
|
||
|
|
||
|
void Think();
|
||
|
|
||
|
void Start(const AgString& sSpawn);
|
||
|
void Abort();
|
||
|
void Allow(CBasePlayer* pPlayer);
|
||
|
};
|
||
|
|
||
|
#endif // !defined(AFX_AGMATCH_H__AD3BF401_1118_465A_9BF2_699D72665B5C__INCLUDED_)
|
||
|
|
||
|
//-- Martin Webrant
|