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.
34 lines
602 B
34 lines
602 B
//++ 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
|
|
|