fixed background drawing problems introduced with my last commit
[supertux.git] / src / serializable.h
index c953977..5590207 100644 (file)
 //  You should have received a copy of the GNU General Public License
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-#ifndef __SERIALIZABLE_H__
-#define __SERIALIZABLE_H__
 
+#ifndef SUPERTUX_SERIALIZABLE_H
+#define SUPERTUX_SERIALIZABLE_H
+
+using namespace SuperTux;
+
+namespace SuperTux {
 class LispWriter;
+}
 
 class Serializable
 {
@@ -27,5 +32,5 @@ public:
   virtual void write(LispWriter& writer) = 0;
 };
 
-#endif
+#endif /*SUPERTUX_SERIALIZABLE_H*/