diff options
-rw-r--r-- | Sprite.cpp | 4 | ||||
-rw-r--r-- | Sprite.h | 5 |
2 files changed, 5 insertions, 4 deletions
@@ -26,6 +26,6 @@ bool Sprite::visible() { return isVisible; } -bool Sprite::loadImage(std::string path) { - std::cout << "Sprite::loadImage(): Loading sprite " << path << ".\n"; +bool Sprite::setImage(std::string path) { + image = loadImage(path); } @@ -4,6 +4,7 @@ #include <string> #include "SDL/SDL.h" #include "SDL/SDL_image.h" +#include "intensemarcus.h" class Sprite { public: @@ -20,9 +21,9 @@ class Sprite { bool visible(); // Load in this sprite's image - bool loadImage(std::string path); + bool setImage(std::string path); // This sprite's image - SDL_Surface image; + SDL_Surface *image; protected: // Coordinates |