summaryrefslogtreecommitdiff
path: root/src/particles.cpp
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-08-28 20:02:23 +0200
committerGitHub <noreply@github.com>2017-08-28 20:02:23 +0200
commit5f38fe33f89e87b56ab95370c2f07fe6117b5eb0 (patch)
treee2a497bb99f37ce6baae56d2979a2ae957829dc2 /src/particles.cpp
parent6fd8a27c91b09f51693243586af3615f962d1730 (diff)
downloadminetest-5f38fe33f89e87b56ab95370c2f07fe6117b5eb0.tar.gz
minetest-5f38fe33f89e87b56ab95370c2f07fe6117b5eb0.tar.bz2
minetest-5f38fe33f89e87b56ab95370c2f07fe6117b5eb0.zip
Clientevent refactor (#6320)
* Refactor clientevent structure * Move structure outside of client header * Create client events on heap not stack, this remove the ClientEvent object copy * Use clientEventHandler to route events
Diffstat (limited to 'src/particles.cpp')
-rw-r--r--src/particles.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/particles.cpp b/src/particles.cpp
index 815ae98c5..4839e45c4 100644
--- a/src/particles.cpp
+++ b/src/particles.cpp
@@ -20,6 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "particles.h"
#include "client.h"
#include "collision.h"
+#include "client/clientevent.h"
#include "client/renderingengine.h"
#include "util/numeric.h"
#include "light.h"