Tentative checkin of tuxdev's "Object improvement patch, part 1"
[supertux.git] / src / object / platform.hpp
index c38f24a..74cd704 100644 (file)
@@ -56,8 +56,11 @@ public:
   virtual void expose(HSQUIRRELVM vm, SQInteger table_idx);
   virtual void unexpose(HSQUIRRELVM vm, SQInteger table_idx);
 
+  Path& get_path() {
+    return *path.get();
+  }
+
 private:
-  std::string name; /**< user-defined name for use in scripts or empty string if not scriptable */
   std::auto_ptr<Path> path;
   std::auto_ptr<PathWalker> walker;
   Vector speed;
@@ -65,4 +68,3 @@ private:
 };
 
 #endif
-