- Implemented a scripted object that can be placed in a level and whose name is
[supertux.git] / src / scripting / functions.cpp
1 #include <stdio.h>
2 #include "functions.h"
3 #include "script_interpreter.h"
4
5 namespace Scripting
6 {
7
8 void wait(float seconds)
9 {
10   ScriptInterpreter::current()->suspend(seconds);
11 }
12
13 }
14