New grow and skid sounds from remaxim
[supertux.git] / src / serializable.hpp
index 06a8234..74adedc 100644 (file)
@@ -1,7 +1,7 @@
 //  $Id$
 //
 //  SuperTux -  A Jump'n Run
-//  Copyright (C) 2004 Matthias Braun <matze@braunis.de
+//  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
 //
 //  This program is free software; you can redistribute it and/or
 //  modify it under the terms of the GNU General Public License
 #ifndef SUPERTUX_SERIALIZABLE_H
 #define SUPERTUX_SERIALIZABLE_H
 
-namespace lisp {
-class Writer;
-}
+namespace lisp { class Writer; }
 
 class Serializable
 {
 public:
   virtual ~Serializable()
   { }
-    
+
   virtual void write(lisp::Writer& writer) = 0;
 };
 
 #endif /*SUPERTUX_SERIALIZABLE_H*/
-