]> git.tdb.fi Git - libs/game.git/commitdiff
Add a missing include and forward declaration
authorMikko Rasa <tdb@tdb.fi>
Sun, 26 Jan 2025 16:27:37 +0000 (18:27 +0200)
committerMikko Rasa <tdb@tdb.fi>
Mon, 27 Jan 2025 11:28:31 +0000 (13:28 +0200)
source/game/replicator.cpp
source/game/replicator.h

index 08fae30d9e7775afacbaa80d5ebe09c267dcdd1d..eae3e52f67e17bea96c3141d530f575caf0a0012 100644 (file)
@@ -1,6 +1,7 @@
 #include "replicator.h"
 #include <msp/core/raii.h>
 #include "possessed.h"
+#include "remotecall.h"
 #include "spawner.h"
 #include "transform.h"
 #include "zygote.h"
index 5823366b998740d32590f12fd7eb05672dcbe42a..5106d3346538225b377ffcc2c41a46bb609be677 100644 (file)
@@ -14,6 +14,7 @@ namespace Msp::Game {
 
 class Possessed;
 class Spawner;
+class RemoteCallBase;
 class Transform;
 
 class entity_access_denied: public std::runtime_error