reduce dependency: PhysicsServerCommandProcessor -> PhysicsCommandProcessorInterface

This commit is contained in:
erwincoumans 2018-01-16 13:39:37 -08:00
parent 851ca5bfb3
commit 68c2253f82
3 changed files with 4 additions and 3 deletions

View File

@ -2,7 +2,7 @@
#define PHYSICS_CLIENT_TCP_H
#include "PhysicsDirect.h"
#include "PhysicsServerCommandProcessor.h"
#include "PhysicsCommandProcessorInterface.h"
class TcpNetworkedPhysicsProcessor : public PhysicsCommandProcessorInterface
{

View File

@ -2,7 +2,7 @@
#define PHYSICS_CLIENT_UDP_H
#include "PhysicsDirect.h"
#include "PhysicsServerCommandProcessor.h"
#include "PhysicsCommandProcessorInterface.h"
class UdpNetworkedPhysicsProcessor : public PhysicsCommandProcessorInterface
{

View File

@ -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