projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b0b9429a0ff19d327ecc59852c41fbaf8a5d1525
[supertux.git]
/
src
/
scripting
/
functions.cpp
1
#include <stdio.h>
2
#include "functions.h"
3
4
namespace Scripting
5
{
6
7
void wait(float secs)
8
{
9
(void) secs;
10
printf("Wait not implemented.\n");
11
}
12
13
}
14