- Made miniswig support HSQUIRRELVM arguments (and realized it was not needed
[supertux.git] / src / scripting / functions.h
1 #ifndef __FUNCTIONS_H__
2 #define __FUNCTIONS_H__
3
4 namespace Scripting
5 {
6
7 /** Suspends the script execution for the specified number of seconds */
8 void set_wakeup_time(float seconds);
9 /** translates a give text into the users language (by looking it up in the .po
10  * files)
11  */
12 std::string translate(const std::string& text);
13
14 }
15
16 #endif
17