1
0
mirror of https://github.com/YGGverse/hlsdk-portable.git synced 2025-03-13 05:51:19 +00:00

23 lines
268 B
C
Raw Normal View History

//++ BulliT
#if !defined(_AG_LOCATION_)
#define _AG_LOCATION_
#include "agglobal.h"
class AgLocation
{
public:
AgLocation();
virtual ~AgLocation();
AgString m_sLocation;
Vector m_vPosition;
void Show();
};
#endif //_AG_LOCATION_
//-- Martin Webrant