Skip to content

Commit

Permalink
Merge branch 'fix-racing-imagination' into actually-fix-racing-stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
EmosewaMC committed Nov 23, 2023
2 parents 0217f88 + 90abd3e commit bf57685
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dGame/dComponents/VehiclePhysicsComponent.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
#include "eReplicaComponentType.h"

struct RemoteInputInfo {
RemoteInputInfo() {
m_RemoteInputX = 0;
m_RemoteInputY = 0;
m_IsPowersliding = false;
m_IsModified = false;
}

void operator=(const RemoteInputInfo& other) {
m_RemoteInputX = other.m_RemoteInputX;
m_RemoteInputY = other.m_RemoteInputY;
Expand Down

0 comments on commit bf57685

Please sign in to comment.