summaryrefslogtreecommitdiff
path: root/engine/stage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/stage.cpp')
-rw-r--r--engine/stage.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/stage.cpp b/engine/stage.cpp
index 9a5bedd..0eb7cb9 100644
--- a/engine/stage.cpp
+++ b/engine/stage.cpp
@@ -2,8 +2,6 @@
#include "config.h"
-#include <wriggle/texturestbi.h>
-
#include <wriggle/gl.h>
#include <cmath>
@@ -12,7 +10,7 @@ Stage::Stage() {
player = new Player();
- texture = new TextureSTBI("textures/shot1.png");
+ texture = new Texture("textures/shot1.png");
shader = new GLShaderProgram();
enemy_list.push_back(new Enemy1(Vector2(0.25, 0.75), patterns));