projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fbff6d8a7dcd71bdf58cb60aa8339c1b05188bd3
[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