- fixed 'When you jump into the roof or a bonus and fall back down you collide with...
[supertux.git] / src / world.h
index 6635fe3..072386f 100644 (file)
@@ -66,14 +66,18 @@ public:
   DisplayManager displaymanager;
 
 public:
-  static World* current() { return current_; }
-  static void set_current(World* w) { current_ = w; }
+  static World* current()
+  { return current_; }
+  static void set_current(World* w)
+  { current_ = w; }
 
   World(const std::string& filename, int level_nr = -1);
   ~World();
   
-  Level*  get_level() { return level; }
-  Player* get_tux() { return tux; }
+  Level*  get_level()
+  { return level; }
+  Player* get_tux()
+  { return tux; }
 
   void add_object(GameObject* object);