31218899e52cff3161ee8a957a8da7e3839e4f29
[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 wait(float seconds);
9
10 }
11
12 #endif
13