Removed legacy AAS from Doom, cleaned up naming.

This commit is contained in:
Justin Marshall
2026-05-22 22:26:19 -07:00
parent b0788b922e
commit 164a6e1f48
53 changed files with 912 additions and 613 deletions
@@ -0,0 +1,29 @@
// Copyright (C) 2007 Id Software, Inc.
//
#ifndef __NAVCALLBACK_FINDAREAOUTOFRANGE_H__
#define __NAVCALLBACK_FINDAREAOUTOFRANGE_H__
#include "NAVCallback_AvoidLocation.h"
/*
===============================================================================
idNAVCallback_FindAreaOutOfRange
===============================================================================
*/
class idNAVCallback_FindAreaOutOfRange : public idNAVCallback_AvoidLocation
{
public:
idNAVCallback_FindAreaOutOfRange( const idVec3& targetPos, float maxDist );
virtual bool AreaIsGoal( const idNAV* aas, int areaNum );
private:
idVec3 targetPos;
float maxDistSqr;
};
#endif /* !__NAVCALLBACK_FINDAREAOUTOFRANGE_H__ */