summaryrefslogtreecommitdiff
path: root/src/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.h')
-rw-r--r--src/player.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/player.h b/src/player.h
deleted file mode 100644
index 2086c45..0000000
--- a/src/player.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef PLAYER_H
-#define PLAYER_H
-
-typedef struct Player {
- float pos_x, pos_y;
- float dir, dir_x, dir_y;
- float plane_x, plane_y;
- float move_speed;
- float sensitivity;
- float look_angle;
-} Player;
-
-void move_player(Player *player, GLFWwindow* window, double* mouse_x, double* mouse_y, double width, double height);
-
-#endif