- Implemented a scripted object that can be placed in a level and whose name is
[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