00001 #pragma once 00002 #include "Sprite.h" 00003 00004 class Background : public Sprite 00005 { 00006 public: 00007 Background(std::string filename, double depth); 00008 Background(std::string filename, int width, int height, double depth); 00009 00010 void draw(); 00011 00012 protected: 00013 double _depth; 00014 };