projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
- 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