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, 2 insertions, 2 deletions
diff --git a/engine/enemy.cpp b/engine/enemy.cpp
index 383ddc7..0f0c32f 100644
--- a/engine/enemy.cpp
+++ b/engine/enemy.cpp
@@ -1,13 +1,13 @@
#include "enemy.h"
-#include <wriggle/texturesdl.h>
+#include <wriggle/texturestbi.h>
#include <SDL/SDL_opengl.h>
Enemy::Enemy(const Vector2& initpos, std::vector<BulletPattern*>& stage_patterns) : patterns(stage_patterns) {
pos = initpos;
- texture = new TextureSDL("textures/enemy.png");
+ texture = new TextureSTBI("textures/enemy.png");
}
void Enemy::update() {