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