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.
28 lines
396 B
28 lines
396 B
8 years ago
|
//++ BulliT
|
||
|
|
||
|
#include "extdll.h"
|
||
|
#include "util.h"
|
||
|
#include "aglocation.h"
|
||
|
|
||
|
#ifdef AG_NO_CLIENT_DLL
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
// Construction/Destruction
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
AgLocation::AgLocation()
|
||
|
{
|
||
|
m_vPosition = Vector(0,0,0);
|
||
|
}
|
||
|
|
||
|
AgLocation::~AgLocation()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
//-- Martin Webrant
|
||
|
|
||
|
|