the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 25 lines 332 B view raw
1#pragma once 2class Player; 3 4class Input 5{ 6public: 7 float xa; 8 float ya; 9 float sprintForward; 10 11 bool wasJumping; 12 bool jumping; 13 bool sneaking; 14 bool usingKeyboardMovement; 15 16 Input(); // 4J - added 17 18 virtual void tick(LocalPlayer *player); 19 20private: 21 22 bool lReset; 23 bool rReset; 24 bool m_gamepadSneaking; 25};