mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2025-04-05 00:50:56 +00:00
Update Item.h
This commit is contained in:
parent
96ed6529b2
commit
4175868489
1 changed files with 19 additions and 1 deletions
20
game/Item.h
20
game/Item.h
|
@ -161,6 +161,7 @@ public:
|
|||
|
||||
void Spawn( void );
|
||||
virtual void Think( void );
|
||||
virtual bool Collide( const trace_t &collision, const idVec3 &velocity ); // darknar, probably this can be useful if the splat fx moveable gib was causing lag. Allow idMoveableItem class spawn fx on collision
|
||||
virtual bool Pickup( idPlayer *player );
|
||||
|
||||
static void DropItems( idAnimatedEntity *ent, const char *type, idList<idEntity *> *list );
|
||||
|
@ -174,7 +175,8 @@ private:
|
|||
idClipModel * trigger;
|
||||
const idDeclParticle * smoke;
|
||||
int smokeTime;
|
||||
|
||||
int nextSoundTime; // darknar, fx collide data
|
||||
idStr fxCollide; // darknar, fx collide data
|
||||
void Gib( const idVec3 &dir, const char *damageDefName );
|
||||
|
||||
void Event_DropToFloor( void );
|
||||
|
@ -226,4 +228,20 @@ private:
|
|||
void Event_GetPlayerPos();
|
||||
};
|
||||
|
||||
// darknar start change
|
||||
|
||||
/*
|
||||
===============================================================================
|
||||
|
||||
idMoveableGibItem
|
||||
|
||||
===============================================================================
|
||||
*/
|
||||
class idMoveableGibItem : public idMoveableItem {
|
||||
public:
|
||||
CLASS_PROTOTYPE(idMoveableGibItem);
|
||||
};
|
||||
|
||||
// darknar end change
|
||||
|
||||
#endif /* !__GAME_ITEM_H__ */
|
||||
|
|
Loading…
Reference in a new issue