aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Input.h
blob: c7e1eec4706d701f76c14e4510f05c5b439123bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once
class Player;

class Input
{
public:
	float xa;
    float ya;

    bool wasJumping;
    bool jumping;
    bool sneaking;
	bool sprinting;

	Input();

    virtual void tick(LocalPlayer *player);

private:
    bool lReset;
    bool rReset;
};