Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
332 B · 25 lines
C
at main
1234567891011121314151617181920212223242526#pragma onceclass Player;
class Input{public: float xa; float ya; float sprintForward;
bool wasJumping; bool jumping; bool sneaking; bool usingKeyboardMovement; Input(); // 4J - added
virtual void tick(LocalPlayer *player);
private:
bool lReset; bool rReset; bool m_gamepadSneaking;};