mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-20 04:30:12 +02:00
Initial Prey Game integration support.
This commit is contained in:
@@ -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__
|
||||
Reference in New Issue
Block a user