mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-11 06:24:30 +00:00
35 lines
602 B
C++
35 lines
602 B
C++
//++ BulliT
|
|
|
|
#include "extdll.h"
|
|
#include "util.h"
|
|
#include "cbase.h"
|
|
#include "player.h"
|
|
#include "gamerules.h"
|
|
#include "aggame.h"
|
|
#include "agglobal.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
AgGame::AgGame()
|
|
{
|
|
|
|
}
|
|
|
|
AgGame::~AgGame()
|
|
{
|
|
|
|
}
|
|
|
|
bool AgGame::IsValid()
|
|
{
|
|
return (0 != m_sShortname.size() &&
|
|
10 > m_sShortname.size() &&
|
|
0 != m_sName.size() &&
|
|
0 != m_sCfg.size() &&
|
|
0 != m_sDescription.size());
|
|
}
|
|
|
|
//-- Martin Webrant
|