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
+23
View File
@@ -0,0 +1,23 @@
#ifndef __PREY_GAME_ANIM_H__
#define __PREY_GAME_ANIM_H__
class hhAnim : public idAnim {
public:
hhAnim() : idAnim() { exactMatch = false; }
hhAnim( const idDeclModelDef *modelDef, const idAnim *anim ) : idAnim( modelDef, anim ) { }
virtual bool AddFrameCommandExtra( idToken &token, frameCommand_t &fc, idLexer &src, idStr &errorText );
virtual bool CallFrameCommandsExtra( const frameCommand_t &command, idEntity *ent ) const;
bool exactMatch;
protected:
virtual idStr InitFrameCommandEvent( frameCommand_t &command, const idStr& cmdStr ) const;
};
#endif /* __PREY_GAME_ANIM_H__ */