mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-09 05:48:49 +00:00
chore: format Minecraft.Client
This commit is contained in:
@@ -1,24 +1,22 @@
|
||||
#pragma once
|
||||
class Player;
|
||||
|
||||
class Input
|
||||
{
|
||||
class Input {
|
||||
public:
|
||||
float xa;
|
||||
float xa;
|
||||
float ya;
|
||||
|
||||
bool wasJumping;
|
||||
bool jumping;
|
||||
bool sneaking;
|
||||
bool sprintKey;
|
||||
|
||||
Input(); // 4J - added
|
||||
virtual ~Input(){}
|
||||
|
||||
virtual void tick(LocalPlayer *player);
|
||||
Input(); // 4J - added
|
||||
virtual ~Input() {}
|
||||
|
||||
virtual void tick(LocalPlayer* player);
|
||||
|
||||
private:
|
||||
|
||||
bool lReset;
|
||||
bool rReset;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user