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.
23 lines
268 B
23 lines
268 B
8 years ago
|
//++ 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
|