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,31 @@
|
||||
#ifndef __GAME_RENDERENTITY_H
|
||||
#define __GAME_RENDERENTITY_H
|
||||
|
||||
extern const idEventDef EV_ModelDefHandleIsValid;
|
||||
|
||||
class hhRenderEntity : public idEntity {
|
||||
CLASS_PROTOTYPE( hhRenderEntity );
|
||||
|
||||
protected:
|
||||
hhRenderEntity();
|
||||
virtual ~hhRenderEntity();
|
||||
|
||||
void Save( idSaveGame *savefile ) const;
|
||||
void Restore( idRestoreGame *savefile );
|
||||
|
||||
virtual void Think();
|
||||
|
||||
virtual void InitCombatModel( const int renderModelHandle );
|
||||
virtual void LinkCombatModel( idEntity* self, const int renderModelHandle );
|
||||
|
||||
public:
|
||||
virtual void Present();
|
||||
|
||||
protected:
|
||||
void Event_ModelDefHandleIsValid();
|
||||
|
||||
protected:
|
||||
idClipModel* combatModel;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user