mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Immediate smoke puff when a normal entity is punched to death
This commit is contained in:
parent
989aba1966
commit
f9da2c9507
12 changed files with 286 additions and 34 deletions
|
@ -356,6 +356,7 @@ private:
|
|||
#ifndef SERVER
|
||||
|
||||
#include "clientobject.h"
|
||||
class ClientSimpleObject;
|
||||
|
||||
/*
|
||||
The client-side environment.
|
||||
|
@ -424,6 +425,12 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
ClientSimpleObjects
|
||||
*/
|
||||
|
||||
void addSimpleObject(ClientSimpleObject *simple);
|
||||
|
||||
/*
|
||||
ActiveObjects
|
||||
*/
|
||||
|
@ -469,6 +476,7 @@ private:
|
|||
IGameDef *m_gamedef;
|
||||
IrrlichtDevice *m_irr;
|
||||
core::map<u16, ClientActiveObject*> m_active_objects;
|
||||
core::list<ClientSimpleObject*> m_simple_objects;
|
||||
Queue<ClientEnvEvent> m_client_event_queue;
|
||||
IntervalLimiter m_active_object_light_update_interval;
|
||||
IntervalLimiter m_lava_hurt_interval;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue