Added bot code.

This commit is contained in:
Justin Marshall
2026-05-19 18:34:55 -07:00
parent b97127f038
commit af56d4bfeb
166 changed files with 22251 additions and 297 deletions
@@ -0,0 +1,29 @@
// Copyright (C) 2007 Id Software, Inc.
//
#ifndef __AASCALLBACK_FINDAREAOUTOFRANGE_H__
#define __AASCALLBACK_FINDAREAOUTOFRANGE_H__
#include "AASCallback_AvoidLocation.h"
/*
===============================================================================
idAASCallback_FindAreaOutOfRange
===============================================================================
*/
class idAASCallback_FindAreaOutOfRange : public idAASCallback_AvoidLocation
{
public:
idAASCallback_FindAreaOutOfRange( const idVec3& targetPos, float maxDist );
virtual bool AreaIsGoal( const idAAS* aas, int areaNum );
private:
idVec3 targetPos;
float maxDistSqr;
};
#endif /* !__AASCALLBACK_FINDAREAOUTOFRANGE_H__ */