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.
25 lines
390 B
25 lines
390 B
8 years ago
|
//++ 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
|