]> git.lizzy.rs Git - dragonblocks-bedrock.git/blob - src/player.h
Some structure Changes
[dragonblocks-bedrock.git] / src / player.h
1 #ifndef _PLAYER_H_
2 #define _PLAYER_H_
3 #include "entity.h"
4 #include "inventory.h"
5 #define PLAYER_SPEED 4
6 #define PLAYER_JUMPSPEED 6
7 class Player : public Entity{
8         public:
9                 void left();
10                 void right();
11                 void jump();
12                 void stop();
13                 Inventory *inventory;
14                 Player();
15 };
16 #endif