1 #ifndef PHYSICS_CLIENT_TCP_C_API_H
2 #define PHYSICS_CLIENT_TCP_C_API_H
3 
4 #include "PhysicsClientC_API.h"
5 
6 #ifdef __cplusplus
7 extern "C"
8 {
9 #endif
10 
11 	///send physics commands using TCP networking
12 	B3_SHARED_API b3PhysicsClientHandle b3ConnectPhysicsTCP(const char* hostName, int port);
13 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif  //PHYSICS_CLIENT_TCP_C_API_H
19