I added the test program for the Sprite class.
[potpourri.git] / src / Sprite.cpp
blob41ef3cde1aa11c3c9300222043e73cccc9fd5369
1 // this is the sprite implementation
3 #include <iostream>
4 #include "Sprite.h"
6 using namespace fragrant;
8 Sprite::Sprite(std::vector<SDL_Surface*> dframes, SpriteParams dparams)
10 std::cerr << "Sprite::Sprite(): not implemented yet" << std::endl;
13 Sprite::~Sprite()
15 std::cerr << "Sprite::~Sprite(): not implemented yet" << std::endl;
18 void Sprite::draw(SDL_Surface* dest)
20 std::cerr << "Sprite::draw(): not implemented yet" << std::endl;