diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-02-13 02:33:21 +0300 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-02-13 22:02:45 +0300 |
commit | f307839a2b9ee23a67ada9cff60fa6a1b9d2b708 (patch) | |
tree | beae452a73c34b6c0d33fe6e84af58a22210ff83 /src/core/Pad.h | |
parent | d1700b32570da625e6d8b0605b792cfac79e7d7c (diff) |
CPlayerPed done
Diffstat (limited to 'src/core/Pad.h')
-rw-r--r-- | src/core/Pad.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/Pad.h b/src/core/Pad.h index 03b734cb..f4a07cae 100644 --- a/src/core/Pad.h +++ b/src/core/Pad.h @@ -389,6 +389,8 @@ public: bool GetRightShoulder1JustDown() { return !!(NewState.RightShoulder1 && !OldState.RightShoulder1); } bool GetRightShoulder2JustDown() { return !!(NewState.RightShoulder2 && !OldState.RightShoulder2); } bool GetStartJustDown() { return !!(NewState.Start && !OldState.Start); } + bool GetLeftStickXJustDown() { return !!(NewState.LeftStickX && !OldState.LeftStickX); } + bool GetLeftStickYJustDown() { return !!(NewState.LeftStickY && !OldState.LeftStickY); } bool GetTriangle() { return !!NewState.Triangle; } bool GetCircle() { return !!NewState.Circle; } |