Code-style consistency improvement:
Apply clang-format-all.sh using the _clang-format file through all the cpp/.h files. make sure not to apply it to certain serialization structures, since some parser expects the * as part of the name, instead of type. This commit contains no other changes aside from adding and applying clang-format-all.sh
This commit is contained in:
@@ -5,11 +5,11 @@
|
||||
|
||||
struct b3PluginContext
|
||||
{
|
||||
b3PhysicsClientHandle m_physClient;
|
||||
b3PhysicsClientHandle m_physClient;
|
||||
|
||||
//plugin can modify the m_userPointer to store persistent object pointer (class or struct instance etc)
|
||||
void* m_userPointer;
|
||||
|
||||
|
||||
const struct b3VRControllerEvent* m_vrControllerEvents;
|
||||
int m_numVRControllerEvents;
|
||||
const struct b3KeyboardEvent* m_keyEvents;
|
||||
@@ -18,14 +18,9 @@ struct b3PluginContext
|
||||
int m_numMouseEvents;
|
||||
const struct b3Notification* m_notifications;
|
||||
int m_numNotifications;
|
||||
|
||||
|
||||
//only used for grpc/processClientCommands
|
||||
class PhysicsCommandProcessorInterface* m_rpcCommandProcessorInterface;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif //B3_PLUGIN_CONTEXT_H
|
||||
#endif //B3_PLUGIN_CONTEXT_H
|
||||
Reference in New Issue
Block a user