Initial Prey Game integration support.

This commit is contained in:
Justin Marshall
2026-05-05 15:01:01 -07:00
parent a6c6f1ed26
commit 8d5f678b25
552 changed files with 265551 additions and 209 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef __PREY_AI_CRAWLER_H__
#define __PREY_AI_CRAWLER_H__
/***********************************************************************
hhCrawler.
Crawler AI.
***********************************************************************/
class hhCrawler : public hhMonsterAI {
public:
CLASS_PROTOTYPE(hhCrawler);
public:
void Spawn();
protected:
void Event_Touch( idEntity *other, trace_t *trace );
void Pickup( hhPlayer *player );
bool GiveToPlayer( hhPlayer* player );
void Think();
bool UpdateAnimationControllers();
};
#endif //__PREY_AI_CRAWLER_H__