mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 17:21:25 +00:00
f44f16d59a
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@168 67975925-1194-0748-b3d5-c16f83f1a3a1
44 lines
No EOL
875 B
C++
44 lines
No EOL
875 B
C++
#ifndef AVH_BASEINFO_LOCATION_H
|
|
#define AVH_BASEINFO_LOCATION_H
|
|
|
|
#include "util/nowarnings.h"
|
|
#include "types.h"
|
|
#include "mod/AvHConstants.h"
|
|
|
|
#ifdef AVH_CLIENT
|
|
#include "common/triangleapi.h"
|
|
#include "cl_dll/wrect.h"
|
|
#include "cl_dll/cl_dll.h"
|
|
#endif
|
|
|
|
#ifdef AVH_SERVER
|
|
#include "extdll.h"
|
|
class CBaseEntity;
|
|
#endif
|
|
|
|
#include "types.h"
|
|
|
|
class AvHBaseInfoLocation
|
|
{
|
|
public:
|
|
AvHBaseInfoLocation();
|
|
|
|
AvHBaseInfoLocation(const string& inLocationName, const vec3_t& inMaxExtent, const vec3_t& inMinExtent);
|
|
|
|
bool GetIsPointInRegion(const vec3_t& inPoint) const;
|
|
|
|
string GetLocationName() const;
|
|
|
|
vec3_t GetMaxExtent() const;
|
|
|
|
vec3_t GetMinExtent() const;
|
|
|
|
protected:
|
|
string mLocationName;
|
|
vec3_t mMinExtent;
|
|
vec3_t mMaxExtent;
|
|
};
|
|
|
|
typedef vector<AvHBaseInfoLocation> AvHBaseInfoLocationListType;
|
|
|
|
#endif |