smartcmd-MinecraftConsoles/Minecraft.Client/Input.h

23 lines
254 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
class Player;
class Input
{
public:
float xa;
float ya;
bool wasJumping;
bool jumping;
bool sneaking;
2026-03-04 21:19:40 +08:00
bool sprinting;
Input();
2026-03-01 12:16:08 +08:00
virtual void tick(LocalPlayer *player);
private:
bool lReset;
bool rReset;
2026-03-02 01:21:56 +08:00
};