- Made miniswig support HSQUIRRELVM arguments (and realized it was not needed
[supertux.git] / src / scripting / functions.h
index e1769c0..f7c8f5c 100644 (file)
@@ -4,7 +4,12 @@
 namespace Scripting
 {
 
-void wait(float secs);
+/** Suspends the script execution for the specified number of seconds */
+void set_wakeup_time(float seconds);
+/** translates a give text into the users language (by looking it up in the .po
+ * files)
+ */
+std::string translate(const std::string& text);
 
 }