mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-11 06:24:30 +00:00
25 lines
390 B
C++
25 lines
390 B
C++
//++ BulliT
|
|
|
|
#include "extdll.h"
|
|
#include "util.h"
|
|
#include "agglobal.h"
|
|
#include "agscore.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
AgScore::AgScore()
|
|
{
|
|
m_iFrags = 0;
|
|
m_iDeaths = 0;
|
|
m_bIngame = false;
|
|
}
|
|
|
|
AgScore::~AgScore()
|
|
{
|
|
|
|
}
|
|
|
|
//-- Martin Webrant
|