This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.Client/Input.h
2026-03-01 19:20:41 +08:00

23 lines
280 B
C++

#pragma once
class Player;
class Input
{
public:
float xa;
float ya;
bool wasJumping;
bool jumping;
bool sneaking;
Input(); // 4J - added
virtual void tick(LocalPlayer *player);
private:
bool lReset;
bool rReset;
bool m_gamepadSneaking;
};