summaryrefslogtreecommitdiff
path: root/object_base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'object_base.cpp')
-rw-r--r--object_base.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/object_base.cpp b/object_base.cpp
index ce97f2a..d04d0f5 100644
--- a/object_base.cpp
+++ b/object_base.cpp
@@ -1,5 +1,6 @@
#include <iostream>
#include <cassert>
+#include <SFML/Graphics.hpp>
#include "object_base.h"
#include "library.h"
@@ -21,12 +22,9 @@ void Object::destroy(void){}
void Object::step(void){}
void Object::draw(void){
- /*if(!sprite_index){
+ if(!sprite_index){
return;
}
- if(!sprite_index->fl_image){
- sprite_index->fl_image=new Fl_PNG_Image(nullptr,sprite_index->image,sprite_index->image_len);
- assert(!sprite_index->fl_image->fail());
- }
- sprite_index->fl_image->draw((int)x,(int)y);*/
+ sprite_index->sf_sprite.setPosition(sf::Vector2f(x,y));
+ window.draw(sprite_index->sf_sprite);
}