-Started to move stuff from library back to main game
[supertux.git] / src / object / background.h
index 7ed3e83..4b6253c 100644 (file)
 
 #include "video/surface.h"
 #include "video/drawing_context.h"
-#include "special/game_object.h"
-#include "utils/lispreader.h"
+#include "game_object.h"
 #include "serializable.h"
 
+using namespace SuperTux;
+
 class DisplayManager;
 
+namespace lisp {
+class Lisp;
+}
+
 class Background : public GameObject, public Serializable
 {
 public:
   Background();
-  Background(LispReader& reader);
+  Background(const lisp::Lisp& reader);
   virtual ~Background();
 
-  virtual void write(LispWriter& writer);
+  virtual void write(lisp::Writer& writer);
 
   void set_image(const std::string& name, float bkgd_speed);