Files
MinecraftCommunityEdition-c…/Minecraft.Client/Input.h
LazyByteDev b40d5e9d01 src stuff
2026-03-02 03:31:00 -05:00

23 lines
272 B
C++

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