diff options
Diffstat (limited to 'engine/player.cpp')
-rw-r--r-- | engine/player.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engine/player.cpp b/engine/player.cpp index 4b09890..94b5074 100644 --- a/engine/player.cpp +++ b/engine/player.cpp @@ -2,7 +2,6 @@ #include <cmath> #include "player.h" -#include <wriggle/texturestbi.h> #include "config.h" Player::Player() { @@ -10,7 +9,7 @@ Player::Player() { y = 0.1; move_factor = 0.005; focus_factor = 0.5; - texture = new TextureSTBI("textures/player.png"); + texture = new Texture("textures/player.png"); } void Player::draw() { |