Fixed trailing whitespaces in all(?) source files of supertux, also fixed some svn...
[supertux.git] / src / object / level_time.hpp
index 98c7926..2ef9c8c 100644 (file)
@@ -31,7 +31,7 @@ class LevelTime : public GameObject, public ScriptInterface
 {
 public:
     LevelTime(const lisp::Lisp& reader);
-  
+
     virtual void expose(HSQUIRRELVM vm, SQInteger table_idx);
     virtual void unexpose(HSQUIRRELVM vm, SQInteger table_idx);
 
@@ -39,10 +39,15 @@ public:
     void draw(DrawingContext& context);
 
     /**
+     * @name Scriptable Methods
+     * @{
+     */
+
+    /**
      * Resumes the countdown
      */
     void start();
-    
+
     /**
      * Pauses the countdown
      */
@@ -58,6 +63,10 @@ public:
      */
     void set_time(float time_left);
 
+    /**
+     * @}
+     */
+
 private:
     std::auto_ptr<Surface> time_surface;
     bool running;