Changed: Optimization from code review PR #42

This commit is contained in:
Foxar
2020-12-08 13:36:13 +01:00
parent 83dce5cb92
commit 582b42c29e
5 changed files with 11 additions and 26 deletions
+2 -2
View File
@@ -26,10 +26,10 @@ public:
Player();
~Player();
void update(Pad &t_pad);
u8 getIsJumping();
const u8 &isJumping() { return bIsJumping; }
private:
u8 isJumping;
u8 bIsJumping;
Vector3 playerNextPosition;
};