mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-05 19:44:14 +00:00
28 lines
396 B
C++
28 lines
396 B
C++
//++ 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
|
|
|
|
|