diff --git a/examples/SharedMemory/PhysicsClientTCP.h b/examples/SharedMemory/PhysicsClientTCP.h index 0304e0a65..c869cadb5 100644 --- a/examples/SharedMemory/PhysicsClientTCP.h +++ b/examples/SharedMemory/PhysicsClientTCP.h @@ -2,7 +2,7 @@ #define PHYSICS_CLIENT_TCP_H #include "PhysicsDirect.h" -#include "PhysicsServerCommandProcessor.h" +#include "PhysicsCommandProcessorInterface.h" class TcpNetworkedPhysicsProcessor : public PhysicsCommandProcessorInterface { diff --git a/examples/SharedMemory/PhysicsClientUDP.h b/examples/SharedMemory/PhysicsClientUDP.h index 8d8d08fd1..b091bf89e 100644 --- a/examples/SharedMemory/PhysicsClientUDP.h +++ b/examples/SharedMemory/PhysicsClientUDP.h @@ -2,7 +2,7 @@ #define PHYSICS_CLIENT_UDP_H #include "PhysicsDirect.h" -#include "PhysicsServerCommandProcessor.h" +#include "PhysicsCommandProcessorInterface.h" class UdpNetworkedPhysicsProcessor : public PhysicsCommandProcessorInterface { diff --git a/examples/SharedMemory/PhysicsServerSharedMemory.cpp b/examples/SharedMemory/PhysicsServerSharedMemory.cpp index 22fb5b577..4413a5aab 100644 --- a/examples/SharedMemory/PhysicsServerSharedMemory.cpp +++ b/examples/SharedMemory/PhysicsServerSharedMemory.cpp @@ -12,7 +12,8 @@ #include "../CommonInterfaces/CommonGUIHelperInterface.h" #include "SharedMemoryBlock.h" -#include "PhysicsServerCommandProcessor.h" + +#include "PhysicsCommandProcessorInterface.h" //number of shared memory blocks == number of simultaneous connections #define MAX_SHARED_MEMORY_BLOCKS 2