summaryrefslogtreecommitdiff
path: root/engine/enemy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/enemy.cpp')
-rw-r--r--engine/enemy.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/enemy.cpp b/engine/enemy.cpp
index 6d1bdad..a7aba0f 100644
--- a/engine/enemy.cpp
+++ b/engine/enemy.cpp
@@ -1,13 +1,11 @@
#include "enemy.h"
-#include <wriggle/texturestbi.h>
-
#include <wriggle/gl.h>
Enemy::Enemy(const Vector2& initpos, std::vector<BulletPattern*>& stage_patterns) : patterns(stage_patterns) {
pos = initpos;
- texture = new TextureSTBI("textures/enemy.png");
+ texture = new Texture("textures/enemy.png");
}
void Enemy::update() {